-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).KibanaRequest
-
-Kibana specific abstraction for an incoming request.
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Params` | `unknown` |
-| `Query` | `unknown` |
-| `Body` | `unknown` |
-| `Method` | extends [`RouteMethod`](../modules/client._internal_namespace.md#routemethod) = `any` |
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.KibanaRequest.md#constructor)
-
-### Properties
-
-- [[requestSymbol]](client._internal_namespace.KibanaRequest.md#[requestsymbol])
-- [auth](client._internal_namespace.KibanaRequest.md#auth)
-- [body](client._internal_namespace.KibanaRequest.md#body)
-- [events](client._internal_namespace.KibanaRequest.md#events)
-- [getAuthRequired](client._internal_namespace.KibanaRequest.md#getauthrequired)
-- [getEvents](client._internal_namespace.KibanaRequest.md#getevents)
-- [getRouteInfo](client._internal_namespace.KibanaRequest.md#getrouteinfo)
-- [headers](client._internal_namespace.KibanaRequest.md#headers)
-- [id](client._internal_namespace.KibanaRequest.md#id)
-- [isSystemRequest](client._internal_namespace.KibanaRequest.md#issystemrequest)
-- [params](client._internal_namespace.KibanaRequest.md#params)
-- [query](client._internal_namespace.KibanaRequest.md#query)
-- [rewrittenUrl](client._internal_namespace.KibanaRequest.md#rewrittenurl)
-- [route](client._internal_namespace.KibanaRequest.md#route)
-- [socket](client._internal_namespace.KibanaRequest.md#socket)
-- [url](client._internal_namespace.KibanaRequest.md#url)
-- [uuid](client._internal_namespace.KibanaRequest.md#uuid)
-- [withoutSecretHeaders](client._internal_namespace.KibanaRequest.md#withoutsecretheaders)
-- [validate](client._internal_namespace.KibanaRequest.md#validate)
-
-### Methods
-
-- [from](client._internal_namespace.KibanaRequest.md#from)
-
-## Constructors
-
-### constructor
-
-• **new KibanaRequest**<`Params`, `Query`, `Body`, `Method`\>(`request`, `params`, `query`, `body`, `withoutSecretHeaders`)
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Params` | `unknown` |
-| `Query` | `unknown` |
-| `Body` | `unknown` |
-| `Method` | extends [`RouteMethod`](../modules/client._internal_namespace.md#routemethod) = `any` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | `Request` |
-| `params` | `Params` |
-| `query` | `Query` |
-| `body` | `Body` |
-| `withoutSecretHeaders` | `boolean` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:126
-
-## Properties
-
-### [requestSymbol]
-
-• `Protected` `Readonly` **[requestSymbol]**: `Request`
-
-**`internal`**
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:125
-
-___
-
-### auth
-
-• `Readonly` **auth**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `isAuthenticated` | `boolean` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:117
-
-___
-
-### body
-
-• `Readonly` **body**: `Body`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:66
-
-___
-
-### events
-
-• `Readonly` **events**: [`KibanaRequestEvents`](../interfaces/client._internal_namespace.KibanaRequestEvents.md)
-
-Request events [KibanaRequestEvents](../interfaces/client._internal_namespace.KibanaRequestEvents.md)
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:116
-
-___
-
-### getAuthRequired
-
-• `Private` **getAuthRequired**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:129
-
-___
-
-### getEvents
-
-• `Private` **getEvents**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:127
-
-___
-
-### getRouteInfo
-
-• `Private` **getRouteInfo**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:128
-
-___
-
-### headers
-
-• `Readonly` **headers**: [`Headers`](../modules/client._internal_namespace.md#headers)
-
-Readonly copy of incoming request headers.
-
-**`remarks`**
-This property will contain a `filtered` copy of request headers.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:107
-
-___
-
-### id
-
-• `Readonly` **id**: `string`
-
-A identifier to identify this request.
-
-**`remarks`**
-Depending on the user's configuration, this value may be sourced from the
-incoming request's `X-Opaque-Id` header which is not guaranteed to be unique
-per request.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:89
-
-___
-
-### isSystemRequest
-
-• `Readonly` **isSystemRequest**: `boolean`
-
-Whether or not the request is a "system request" rather than an application-level request.
-Can be set on the client using the `HttpFetchOptions#asSystemRequest` option.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:112
-
-___
-
-### params
-
-• `Readonly` **params**: `Params`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:64
-
-___
-
-### query
-
-• `Readonly` **query**: `Query`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:65
-
-___
-
-### rewrittenUrl
-
-• `Optional` `Readonly` **rewrittenUrl**: `URL`
-
-URL rewritten in onPreRouting request interceptor.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:123
-
-___
-
-### route
-
-• `Readonly` **route**: `Readonly`<{ `method`: `RecursiveReadonly`<`Method`\> ; `options`: `RecursiveReadonly`<[`KibanaRequestRouteOptions`](../modules/client._internal_namespace.md#kibanarequestrouteoptions)<`Method`\>\> ; `path`: `string` }\>
-
-matched route details
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:101
-
-___
-
-### socket
-
-• `Readonly` **socket**: [`IKibanaSocket`](../interfaces/client._internal_namespace.IKibanaSocket.md)
-
-[IKibanaSocket](../interfaces/client._internal_namespace.IKibanaSocket.md)
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:114
-
-___
-
-### url
-
-• `Readonly` **url**: `URL`
-
-a WHATWG URL standard object.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:99
-
-___
-
-### uuid
-
-• `Readonly` **uuid**: `string`
-
-A UUID to identify this request.
-
-**`remarks`**
-This value is NOT sourced from the incoming request's `X-Opaque-Id` header. it
-is always a UUID uniquely identifying the request.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:97
-
-___
-
-### withoutSecretHeaders
-
-• `Private` `Readonly` **withoutSecretHeaders**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:67
-
-___
-
-### validate
-
-▪ `Static` `Private` **validate**: `any`
-
-Validates the different parts of a request based on the schemas defined for
-the route. Builds up the actual params, query and body object that will be
-received in the route handler.
-
-**`internal`**
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:80
-
-## Methods
-
-### from
-
-▸ `Static` **from**<`P`, `Q`, `B`\>(`req`, `routeSchemas?`, `withoutSecretHeaders?`): [`KibanaRequest`](client._internal_namespace.KibanaRequest.md)<`P`, `Q`, `B`, `any`\>
-
-Factory for creating requests. Validates the request before creating an
-instance of a KibanaRequest.
-
-**`internal`**
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `P` |
-| `Q` |
-| `B` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `req` | `Request` |
-| `routeSchemas?` | [`RouteValidator`](client._internal_namespace.RouteValidator.md)<`P`, `Q`, `B`\> \| [`RouteValidatorFullConfig`](../modules/client._internal_namespace.md#routevalidatorfullconfig)<`P`, `Q`, `B`\> |
-| `withoutSecretHeaders?` | `boolean` |
-
-#### Returns
-
-[`KibanaRequest`](client._internal_namespace.KibanaRequest.md)<`P`, `Q`, `B`, `any`\>
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:73
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.LicenseState.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.LicenseState.md
deleted file mode 100644
index 9b8af11cd73cf..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.LicenseState.md
+++ /dev/null
@@ -1,215 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / LicenseState
-
-# Class: LicenseState
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).LicenseState
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.LicenseState.md#constructor)
-
-### Properties
-
-- [\_notifyUsage](client._internal_namespace.LicenseState.md#_notifyusage)
-- [license](client._internal_namespace.LicenseState.md#license)
-- [licenseInformation](client._internal_namespace.LicenseState.md#licenseinformation)
-- [notifyUsage](client._internal_namespace.LicenseState.md#notifyusage)
-- [subscription](client._internal_namespace.LicenseState.md#subscription)
-- [updateInformation](client._internal_namespace.LicenseState.md#updateinformation)
-
-### Methods
-
-- [checkLicense](client._internal_namespace.LicenseState.md#checklicense)
-- [clean](client._internal_namespace.LicenseState.md#clean)
-- [ensureLicenseForActionType](client._internal_namespace.LicenseState.md#ensurelicenseforactiontype)
-- [getLicenseInformation](client._internal_namespace.LicenseState.md#getlicenseinformation)
-- [isLicenseValidForActionType](client._internal_namespace.LicenseState.md#islicensevalidforactiontype)
-- [setNotifyUsage](client._internal_namespace.LicenseState.md#setnotifyusage)
-
-## Constructors
-
-### constructor
-
-• **new LicenseState**(`license$`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `license$` | `Observable`<[`ILicense`](../interfaces/client._internal_namespace.ILicense.md)\> |
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:17
-
-## Properties
-
-### \_notifyUsage
-
-• `Private` **\_notifyUsage**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:16
-
-___
-
-### license
-
-• `Private` `Optional` **license**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:15
-
-___
-
-### licenseInformation
-
-• `Private` **licenseInformation**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:13
-
-___
-
-### notifyUsage
-
-• `Private` **notifyUsage**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:30
-
-___
-
-### subscription
-
-• `Private` **subscription**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:14
-
-___
-
-### updateInformation
-
-• `Private` **updateInformation**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:18
-
-## Methods
-
-### checkLicense
-
-▸ **checkLicense**(`license`): [`ActionsLicenseInformation`](../interfaces/client._internal_namespace.ActionsLicenseInformation.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `license` | `undefined` \| [`ILicense`](../interfaces/client._internal_namespace.ILicense.md) |
-
-#### Returns
-
-[`ActionsLicenseInformation`](../interfaces/client._internal_namespace.ActionsLicenseInformation.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:32
-
-___
-
-### clean
-
-▸ **clean**(): `void`
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:20
-
-___
-
-### ensureLicenseForActionType
-
-▸ **ensureLicenseForActionType**(`actionType`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `actionType` | [`ActionType`](../interfaces/client._internal_namespace.ActionType-1.md)<[`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig), [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets), [`ActionTypeParams`](../modules/client._internal_namespace.md#actiontypeparams), `void`\> |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:31
-
-___
-
-### getLicenseInformation
-
-▸ **getLicenseInformation**(): [`ActionsLicenseInformation`](../interfaces/client._internal_namespace.ActionsLicenseInformation.md)
-
-#### Returns
-
-[`ActionsLicenseInformation`](../interfaces/client._internal_namespace.ActionsLicenseInformation.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:21
-
-___
-
-### isLicenseValidForActionType
-
-▸ **isLicenseValidForActionType**(`actionType`, `__namedParameters?`): { `isValid`: ``true`` } \| { `isValid`: ``false`` ; `reason`: ``"unavailable"`` \| ``"expired"`` \| ``"invalid"`` }
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `actionType` | [`ActionType`](../interfaces/client._internal_namespace.ActionType-1.md)<[`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig), [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets), [`ActionTypeParams`](../modules/client._internal_namespace.md#actiontypeparams), `void`\> |
-| `__namedParameters?` | `Object` |
-| `__namedParameters.notifyUsage` | `boolean` |
-
-#### Returns
-
-{ `isValid`: ``true`` } \| { `isValid`: ``false`` ; `reason`: ``"unavailable"`` \| ``"expired"`` \| ``"invalid"`` }
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:22
-
-___
-
-### setNotifyUsage
-
-▸ **setNotifyUsage**(`notifyUsage`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `notifyUsage` | (`featureName`: `string`, `usedAt?`: `number` \| `Date`) => `void` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:19
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.RouteValidationError.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.RouteValidationError.md
deleted file mode 100644
index a9fcf909bd74a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.RouteValidationError.md
+++ /dev/null
@@ -1,40 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteValidationError
-
-# Class: RouteValidationError
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteValidationError
-
-Error to return when the validation is not successful.
-
-## Hierarchy
-
-- `SchemaTypeError`
-
- ↳ **`RouteValidationError`**
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.RouteValidationError.md#constructor)
-
-## Constructors
-
-### constructor
-
-• **new RouteValidationError**(`error`, `path?`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `string` \| `Error` |
-| `path?` | `string`[] |
-
-#### Overrides
-
-SchemaTypeError.constructor
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator_error.d.ts:7
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.RouteValidator.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.RouteValidator.md
deleted file mode 100644
index bf73fbda85719..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.RouteValidator.md
+++ /dev/null
@@ -1,272 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteValidator
-
-# Class: RouteValidator
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteValidator
-
-Route validator class to define the validation logic for each new route.
-
-**`internal`**
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `P` | {} |
-| `Q` | {} |
-| `B` | {} |
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.RouteValidator.md#constructor)
-
-### Properties
-
-- [config](client._internal_namespace.RouteValidator.md#config)
-- [customValidation](client._internal_namespace.RouteValidator.md#customvalidation)
-- [options](client._internal_namespace.RouteValidator.md#options)
-- [preValidateSchema](client._internal_namespace.RouteValidator.md#prevalidateschema)
-- [safetyPostchecks](client._internal_namespace.RouteValidator.md#safetypostchecks)
-- [safetyPrechecks](client._internal_namespace.RouteValidator.md#safetyprechecks)
-- [validate](client._internal_namespace.RouteValidator.md#validate)
-- [validateFunction](client._internal_namespace.RouteValidator.md#validatefunction)
-- [ResultFactory](client._internal_namespace.RouteValidator.md#resultfactory)
-
-### Methods
-
-- [getBody](client._internal_namespace.RouteValidator.md#getbody)
-- [getParams](client._internal_namespace.RouteValidator.md#getparams)
-- [getQuery](client._internal_namespace.RouteValidator.md#getquery)
-- [hasBody](client._internal_namespace.RouteValidator.md#hasbody)
-- [from](client._internal_namespace.RouteValidator.md#from)
-
-## Constructors
-
-### constructor
-
-• `Private` **new RouteValidator**<`P`, `Q`, `B`\>()
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `P` | {} |
-| `Q` | {} |
-| `B` | {} |
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:112
-
-## Properties
-
-### config
-
-• `Private` `Readonly` **config**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:108
-
-___
-
-### customValidation
-
-• `Private` **customValidation**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:136
-
-___
-
-### options
-
-• `Private` `Readonly` **options**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:109
-
-___
-
-### preValidateSchema
-
-• `Private` **preValidateSchema**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:138
-
-___
-
-### safetyPostchecks
-
-• `Private` **safetyPostchecks**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:135
-
-___
-
-### safetyPrechecks
-
-• `Private` **safetyPrechecks**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:134
-
-___
-
-### validate
-
-• `Private` **validate**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:133
-
-___
-
-### validateFunction
-
-• `Private` **validateFunction**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:137
-
-___
-
-### ResultFactory
-
-▪ `Static` `Private` **ResultFactory**: `any`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:111
-
-## Methods
-
-### getBody
-
-▸ **getBody**(`data`, `namespace?`): `Readonly`<`B`\>
-
-Get validated body
-
-**`internal`**
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `data` | `unknown` |
-| `namespace?` | `string` |
-
-#### Returns
-
-`Readonly`<`B`\>
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:127
-
-___
-
-### getParams
-
-▸ **getParams**(`data`, `namespace?`): `Readonly`<`P`\>
-
-Get validated URL params
-
-**`internal`**
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `data` | `unknown` |
-| `namespace?` | `string` |
-
-#### Returns
-
-`Readonly`<`P`\>
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:117
-
-___
-
-### getQuery
-
-▸ **getQuery**(`data`, `namespace?`): `Readonly`<`Q`\>
-
-Get validated query params
-
-**`internal`**
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `data` | `unknown` |
-| `namespace?` | `string` |
-
-#### Returns
-
-`Readonly`<`Q`\>
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:122
-
-___
-
-### hasBody
-
-▸ **hasBody**(): `boolean`
-
-Has body validation
-
-**`internal`**
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:132
-
-___
-
-### from
-
-▸ `Static` **from**<`_P`, `_Q`, `_B`\>(`opts`): [`RouteValidator`](client._internal_namespace.RouteValidator.md)<`_P`, `_Q`, `_B`\>
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `_P` | {} |
-| `_Q` | {} |
-| `_B` | {} |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `opts` | [`RouteValidator`](client._internal_namespace.RouteValidator.md)<`_P`, `_Q`, `_B`\> \| [`RouteValidatorFullConfig`](../modules/client._internal_namespace.md#routevalidatorfullconfig)<`_P`, `_Q`, `_B`\> |
-
-#### Returns
-
-[`RouteValidator`](client._internal_namespace.RouteValidator.md)<`_P`, `_Q`, `_B`\>
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:110
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectActions.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectActions.md
deleted file mode 100644
index cced678be25cc..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectActions.md
+++ /dev/null
@@ -1,66 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectActions
-
-# Class: SavedObjectActions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectActions
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SavedObjectActions.md#constructor)
-
-### Properties
-
-- [prefix](client._internal_namespace.SavedObjectActions.md#prefix)
-
-### Methods
-
-- [get](client._internal_namespace.SavedObjectActions.md#get)
-
-## Constructors
-
-### constructor
-
-• **new SavedObjectActions**(`versionNumber`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `versionNumber` | `string` |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/saved_object.d.ts:3
-
-## Properties
-
-### prefix
-
-• `Private` `Readonly` **prefix**: `any`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/saved_object.d.ts:2
-
-## Methods
-
-### get
-
-▸ **get**(`type`, `operation`): `string`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `operation` | `string` |
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/saved_object.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectTypeRegistry.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectTypeRegistry.md
deleted file mode 100644
index bc38c9d6773b1..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectTypeRegistry.md
+++ /dev/null
@@ -1,306 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectTypeRegistry
-
-# Class: SavedObjectTypeRegistry
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectTypeRegistry
-
-Registry holding information about all the registered [saved object types](../interfaces/client._internal_namespace.SavedObjectsType.md).
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SavedObjectTypeRegistry.md#constructor)
-
-### Properties
-
-- [types](client._internal_namespace.SavedObjectTypeRegistry.md#types)
-
-### Methods
-
-- [getAllTypes](client._internal_namespace.SavedObjectTypeRegistry.md#getalltypes)
-- [getImportableAndExportableTypes](client._internal_namespace.SavedObjectTypeRegistry.md#getimportableandexportabletypes)
-- [getIndex](client._internal_namespace.SavedObjectTypeRegistry.md#getindex)
-- [getType](client._internal_namespace.SavedObjectTypeRegistry.md#gettype)
-- [getVisibleTypes](client._internal_namespace.SavedObjectTypeRegistry.md#getvisibletypes)
-- [isHidden](client._internal_namespace.SavedObjectTypeRegistry.md#ishidden)
-- [isImportableAndExportable](client._internal_namespace.SavedObjectTypeRegistry.md#isimportableandexportable)
-- [isMultiNamespace](client._internal_namespace.SavedObjectTypeRegistry.md#ismultinamespace)
-- [isNamespaceAgnostic](client._internal_namespace.SavedObjectTypeRegistry.md#isnamespaceagnostic)
-- [isShareable](client._internal_namespace.SavedObjectTypeRegistry.md#isshareable)
-- [isSingleNamespace](client._internal_namespace.SavedObjectTypeRegistry.md#issinglenamespace)
-- [registerType](client._internal_namespace.SavedObjectTypeRegistry.md#registertype)
-
-## Constructors
-
-### constructor
-
-• **new SavedObjectTypeRegistry**()
-
-## Properties
-
-### types
-
-• `Private` `Readonly` **types**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:14
-
-## Methods
-
-### getAllTypes
-
-▸ **getAllTypes**(): [`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>[]
-
-Return all [types](../interfaces/client._internal_namespace.SavedObjectsType.md) currently registered, including the hidden ones.
-
-To only get the visible types (which is the most common use case), use `getVisibleTypes` instead.
-
-#### Returns
-
-[`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:35
-
-___
-
-### getImportableAndExportableTypes
-
-▸ **getImportableAndExportableTypes**(): [`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>[]
-
-Return all [types](../interfaces/client._internal_namespace.SavedObjectsType.md) currently registered that are importable/exportable.
-
-#### Returns
-
-[`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:39
-
-___
-
-### getIndex
-
-▸ **getIndex**(`type`): `undefined` \| `string`
-
-Returns the `indexPattern` property for given type, or `undefined` if
-the type is not registered.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`undefined` \| `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:69
-
-___
-
-### getType
-
-▸ **getType**(`type`): `undefined` \| [`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>
-
-Return the [type](../interfaces/client._internal_namespace.SavedObjectsType.md) definition for given type name.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`undefined` \| [`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:23
-
-___
-
-### getVisibleTypes
-
-▸ **getVisibleTypes**(): [`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>[]
-
-Returns all visible [types](../interfaces/client._internal_namespace.SavedObjectsType.md).
-
-A visible type is a type that doesn't explicitly define `hidden=true` during registration.
-
-#### Returns
-
-[`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:29
-
-___
-
-### isHidden
-
-▸ **isHidden**(`type`): `boolean`
-
-Returns the `hidden` property for given type, or `false` if
-the type is not registered.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:64
-
-___
-
-### isImportableAndExportable
-
-▸ **isImportableAndExportable**(`type`): `boolean`
-
-Returns the `management.importableAndExportable` property for given type, or
-`false` if the type is not registered or does not define a management section.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:74
-
-___
-
-### isMultiNamespace
-
-▸ **isMultiNamespace**(`type`): `boolean`
-
-Returns whether the type is multi-namespace (shareable *or* isolated);
-resolves to `false` if the type is not registered
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:54
-
-___
-
-### isNamespaceAgnostic
-
-▸ **isNamespaceAgnostic**(`type`): `boolean`
-
-Returns whether the type is namespace-agnostic (global);
-resolves to `false` if the type is not registered
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:44
-
-___
-
-### isShareable
-
-▸ **isShareable**(`type`): `boolean`
-
-Returns whether the type is multi-namespace (shareable);
-resolves to `false` if the type is not registered
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:59
-
-___
-
-### isSingleNamespace
-
-▸ **isSingleNamespace**(`type`): `boolean`
-
-Returns whether the type is single-namespace (isolated);
-resolves to `true` if the type is not registered
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:49
-
-___
-
-### registerType
-
-▸ **registerType**(`type`): `void`
-
-Register a [type](../interfaces/client._internal_namespace.SavedObjectsType.md) inside the registry.
-A type can only be registered once. subsequent calls with the same type name will throw an error.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | [`SavedObjectsType`](../interfaces/client._internal_namespace.SavedObjectsType.md)<`any`\> |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:19
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsClient.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsClient.md
deleted file mode 100644
index 1d97deadff81a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsClient.md
+++ /dev/null
@@ -1,617 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsClient
-
-# Class: SavedObjectsClient
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsClient
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SavedObjectsClient.md#constructor)
-
-### Properties
-
-- [\_repository](client._internal_namespace.SavedObjectsClient.md#_repository)
-- [errors](client._internal_namespace.SavedObjectsClient.md#errors)
-- [errors](client._internal_namespace.SavedObjectsClient.md#errors)
-
-### Methods
-
-- [bulkCreate](client._internal_namespace.SavedObjectsClient.md#bulkcreate)
-- [bulkGet](client._internal_namespace.SavedObjectsClient.md#bulkget)
-- [bulkResolve](client._internal_namespace.SavedObjectsClient.md#bulkresolve)
-- [bulkUpdate](client._internal_namespace.SavedObjectsClient.md#bulkupdate)
-- [checkConflicts](client._internal_namespace.SavedObjectsClient.md#checkconflicts)
-- [closePointInTime](client._internal_namespace.SavedObjectsClient.md#closepointintime)
-- [collectMultiNamespaceReferences](client._internal_namespace.SavedObjectsClient.md#collectmultinamespacereferences)
-- [create](client._internal_namespace.SavedObjectsClient.md#create)
-- [createPointInTimeFinder](client._internal_namespace.SavedObjectsClient.md#createpointintimefinder)
-- [delete](client._internal_namespace.SavedObjectsClient.md#delete)
-- [find](client._internal_namespace.SavedObjectsClient.md#find)
-- [get](client._internal_namespace.SavedObjectsClient.md#get)
-- [openPointInTimeForType](client._internal_namespace.SavedObjectsClient.md#openpointintimefortype)
-- [removeReferencesTo](client._internal_namespace.SavedObjectsClient.md#removereferencesto)
-- [resolve](client._internal_namespace.SavedObjectsClient.md#resolve)
-- [update](client._internal_namespace.SavedObjectsClient.md#update)
-- [updateObjectsSpaces](client._internal_namespace.SavedObjectsClient.md#updateobjectsspaces)
-
-## Constructors
-
-### constructor
-
-• **new SavedObjectsClient**(`repository`)
-
-**`internal`**
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `repository` | [`ISavedObjectsRepository`](../modules/client._internal_namespace.md#isavedobjectsrepository) |
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:371
-
-## Properties
-
-### \_repository
-
-• `Private` **\_repository**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:369
-
-___
-
-### errors
-
-• **errors**: typeof [`SavedObjectsErrorHelpers`](client._internal_namespace.SavedObjectsErrorHelpers.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:368
-
-___
-
-### errors
-
-▪ `Static` **errors**: typeof [`SavedObjectsErrorHelpers`](client._internal_namespace.SavedObjectsErrorHelpers.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:367
-
-## Methods
-
-### bulkCreate
-
-▸ **bulkCreate**<`T`\>(`objects`, `options?`): `Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-Persists multiple documents batched together as a single request
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects` | [`SavedObjectsBulkCreateObject`](../interfaces/client._internal_namespace.SavedObjectsBulkCreateObject.md)<`T`\>[] |
-| `options?` | [`SavedObjectsCreateOptions`](../interfaces/client._internal_namespace.SavedObjectsCreateOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:386
-
-___
-
-### bulkGet
-
-▸ **bulkGet**<`T`\>(`objects?`, `options?`): `Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-Returns an array of objects by id
-
-**`example`**
-
-bulkGet([
- { id: 'one', type: 'config' },
- { id: 'foo', type: 'index-pattern' }
-])
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects?` | [`SavedObjectsBulkGetObject`](../interfaces/client._internal_namespace.SavedObjectsBulkGetObject.md)[] | an array of ids, or an array of objects containing id, type and optionally fields |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:420
-
-___
-
-### bulkResolve
-
-▸ **bulkResolve**<`T`\>(`objects`, `options?`): `Promise`<[`SavedObjectsBulkResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md)<`T`\>\>
-
-Resolves an array of objects by id, using any legacy URL aliases if they exist
-
-**`example`**
-
-bulkResolve([
- { id: 'one', type: 'config' },
- { id: 'foo', type: 'index-pattern' }
-])
-
-**`note`** Saved objects that Kibana fails to find are replaced with an error object and an "exactMatch" outcome. The rationale behind the
-outcome is that "exactMatch" is the default outcome, and the outcome only changes if an alias is found. This behavior is unique to
-`bulkResolve`; the regular `resolve` API will throw an error instead.
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects` | [`SavedObjectsBulkResolveObject`](../interfaces/client._internal_namespace.SavedObjectsBulkResolveObject.md)[] | an array of objects containing id, type |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:444
-
-___
-
-### bulkUpdate
-
-▸ **bulkUpdate**<`T`\>(`objects`, `options?`): `Promise`<[`SavedObjectsBulkUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md)<`T`\>\>
-
-Bulk Updates multiple SavedObject at once
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects` | [`SavedObjectsBulkUpdateObject`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateObject.md)<`T`\>[] |
-| `options?` | [`SavedObjectsBulkUpdateOptions`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:466
-
-___
-
-### checkConflicts
-
-▸ **checkConflicts**(`objects?`, `options?`): `Promise`<[`SavedObjectsCheckConflictsResponse`](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md)\>
-
-Check what conflicts will result when creating a given array of saved objects. This includes "unresolvable conflicts", which are
-multi-namespace objects that exist in a different namespace; such conflicts cannot be resolved/overwritten.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects?` | [`SavedObjectsCheckConflictsObject`](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsObject.md)[] |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsCheckConflictsResponse`](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:394
-
-___
-
-### closePointInTime
-
-▸ **closePointInTime**(`id`, `options?`): `Promise`<[`SavedObjectsClosePointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md)\>
-
-Closes a Point In Time (PIT) by ID. This simply proxies the request to ES via the
-Elasticsearch client, and is included in the Saved Objects Client as a convenience
-for consumers who are using [SavedObjectsClient.openPointInTimeForType](client._internal_namespace.SavedObjectsClient.md#openpointintimefortype).
-
-Only use this API if you have an advanced use case that's not solved by the
-[SavedObjectsClient.createPointInTimeFinder](client._internal_namespace.SavedObjectsClient.md#createpointintimefinder) method.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `id` | `string` |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsClosePointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:488
-
-___
-
-### collectMultiNamespaceReferences
-
-▸ **collectMultiNamespaceReferences**(`objects`, `options?`): `Promise`<[`SavedObjectsCollectMultiNamespaceReferencesResponse`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md)\>
-
-Gets all references and transitive references of the listed objects. Ignores any object that is not a multi-namespace type.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects` | [`SavedObjectsCollectMultiNamespaceReferencesObject`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md)[] |
-| `options?` | [`SavedObjectsCollectMultiNamespaceReferencesOptions`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsCollectMultiNamespaceReferencesResponse`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:541
-
-___
-
-### create
-
-▸ **create**<`T`\>(`type`, `attributes`, `options?`): `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-Persists a SavedObject
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `attributes` | `T` |
-| `options?` | [`SavedObjectsCreateOptions`](../interfaces/client._internal_namespace.SavedObjectsCreateOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:379
-
-___
-
-### createPointInTimeFinder
-
-▸ **createPointInTimeFinder**<`T`, `A`\>(`findOptions`, `dependencies?`): [`ISavedObjectsPointInTimeFinder`](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md)<`T`, `A`\>
-
-Returns a [ISavedObjectsPointInTimeFinder](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md) to help page through
-large sets of saved objects. We strongly recommend using this API for
-any `find` queries that might return more than 1000 saved objects,
-however this API is only intended for use in server-side "batch"
-processing of objects where you are collecting all objects in memory
-or streaming them back to the client.
-
-Do NOT use this API in a route handler to facilitate paging through
-saved objects on the client-side unless you are streaming all of the
-results back to the client at once. Because the returned generator is
-stateful, you cannot rely on subsequent http requests retrieving new
-pages from the same Kibana server in multi-instance deployments.
-
-The generator wraps calls to [SavedObjectsClient.find](client._internal_namespace.SavedObjectsClient.md#find) and iterates
-over multiple pages of results using `_pit` and `search_after`. This will
-open a new Point-In-Time (PIT), and continue paging until a set of
-results is received that's smaller than the designated `perPage`.
-
-Once you have retrieved all of the results you need, it is recommended
-to call `close()` to clean up the PIT and prevent Elasticsearch from
-consuming resources unnecessarily. This is only required if you are
-done iterating and have not yet paged through all of the results: the
-PIT will automatically be closed for you once you reach the last page
-of results, or if the underlying call to `find` fails for any reason.
-
-**`example`**
-```ts
-const findOptions: SavedObjectsCreatePointInTimeFinderOptions = {
- type: 'visualization',
- search: 'foo*',
- perPage: 100,
-};
-
-const finder = savedObjectsClient.createPointInTimeFinder(findOptions);
-
-const responses: SavedObjectFindResponse[] = [];
-for await (const response of finder.find()) {
- responses.push(...response);
- if (doneSearching) {
- await finder.close();
- }
-}
-```
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-| `A` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `findOptions` | [`SavedObjectsCreatePointInTimeFinderOptions`](../modules/client._internal_namespace.md#savedobjectscreatepointintimefinderoptions) |
-| `dependencies?` | [`SavedObjectsCreatePointInTimeFinderDependencies`](../interfaces/client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md) |
-
-#### Returns
-
-[`ISavedObjectsPointInTimeFinder`](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md)<`T`, `A`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:534
-
-___
-
-### delete
-
-▸ **delete**(`type`, `id`, `options?`): `Promise`<{}\>
-
-Deletes a SavedObject
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsDeleteOptions`](../interfaces/client._internal_namespace.SavedObjectsDeleteOptions.md) |
-
-#### Returns
-
-`Promise`<{}\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:402
-
-___
-
-### find
-
-▸ **find**<`T`, `A`\>(`options`): `Promise`<[`SavedObjectsFindResponse`](../interfaces/client._internal_namespace.SavedObjectsFindResponse.md)<`T`, `A`\>\>
-
-Find all SavedObjects matching the search query
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-| `A` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `options` | [`SavedObjectsFindOptions`](../interfaces/client._internal_namespace.SavedObjectsFindOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsFindResponse`](../interfaces/client._internal_namespace.SavedObjectsFindResponse.md)<`T`, `A`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:408
-
-___
-
-### get
-
-▸ **get**<`T`\>(`type`, `id`, `options?`): `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-Retrieves a single object
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `type` | `string` | The type of SavedObject to retrieve |
-| `id` | `string` | The ID of the SavedObject to retrieve |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) | |
-
-#### Returns
-
-`Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:428
-
-___
-
-### openPointInTimeForType
-
-▸ **openPointInTimeForType**(`type`, `options?`): `Promise`<[`SavedObjectsOpenPointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md)\>
-
-Opens a Point In Time (PIT) against the indices for the specified Saved Object types.
-The returned `id` can then be passed to [SavedObjectsClient.find](client._internal_namespace.SavedObjectsClient.md#find) to search
-against that PIT.
-
-Only use this API if you have an advanced use case that's not solved by the
-[SavedObjectsClient.createPointInTimeFinder](client._internal_namespace.SavedObjectsClient.md#createpointintimefinder) method.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` \| `string`[] |
-| `options?` | [`SavedObjectsOpenPointInTimeOptions`](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsOpenPointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:479
-
-___
-
-### removeReferencesTo
-
-▸ **removeReferencesTo**(`type`, `id`, `options?`): `Promise`<[`SavedObjectsRemoveReferencesToResponse`](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md)\>
-
-Updates all objects containing a reference to the given {type, id} tuple to remove the said reference.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsRemoveReferencesToOptions`](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsRemoveReferencesToResponse`](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:470
-
-___
-
-### resolve
-
-▸ **resolve**<`T`\>(`type`, `id`, `options?`): `Promise`<[`SavedObjectsResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsResolveResponse.md)<`T`\>\>
-
-Resolves a single object, using any legacy URL alias if it exists
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `type` | `string` | The type of SavedObject to retrieve |
-| `id` | `string` | The ID of the SavedObject to retrieve |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) | |
-
-#### Returns
-
-`Promise`<[`SavedObjectsResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsResolveResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:452
-
-___
-
-### update
-
-▸ **update**<`T`\>(`type`, `id`, `attributes`, `options?`): `Promise`<[`SavedObjectsUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md)<`T`\>\>
-
-Updates an SavedObject
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `attributes` | `Partial`<`T`\> |
-| `options?` | [`SavedObjectsUpdateOptions`](../interfaces/client._internal_namespace.SavedObjectsUpdateOptions.md)<`T`\> |
-
-#### Returns
-
-`Promise`<[`SavedObjectsUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:460
-
-___
-
-### updateObjectsSpaces
-
-▸ **updateObjectsSpaces**(`objects`, `spacesToAdd`, `spacesToRemove`, `options?`): `Promise`<[`SavedObjectsUpdateObjectsSpacesResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md)\>
-
-Updates one or more objects to add and/or remove them from specified spaces.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects` | [`SavedObjectsUpdateObjectsSpacesObject`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md)[] |
-| `spacesToAdd` | `string`[] |
-| `spacesToRemove` | `string`[] |
-| `options?` | [`SavedObjectsUpdateObjectsSpacesOptions`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsUpdateObjectsSpacesResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:550
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsErrorHelpers.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsErrorHelpers.md
deleted file mode 100644
index c428ccb237f1b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsErrorHelpers.md
+++ /dev/null
@@ -1,665 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsErrorHelpers
-
-# Class: SavedObjectsErrorHelpers
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsErrorHelpers
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SavedObjectsErrorHelpers.md#constructor)
-
-### Methods
-
-- [createBadRequestError](client._internal_namespace.SavedObjectsErrorHelpers.md#createbadrequesterror)
-- [createConflictError](client._internal_namespace.SavedObjectsErrorHelpers.md#createconflicterror)
-- [createGenericNotFoundError](client._internal_namespace.SavedObjectsErrorHelpers.md#creategenericnotfounderror)
-- [createGenericNotFoundEsUnavailableError](client._internal_namespace.SavedObjectsErrorHelpers.md#creategenericnotfoundesunavailableerror)
-- [createIndexAliasNotFoundError](client._internal_namespace.SavedObjectsErrorHelpers.md#createindexaliasnotfounderror)
-- [createInvalidVersionError](client._internal_namespace.SavedObjectsErrorHelpers.md#createinvalidversionerror)
-- [createTooManyRequestsError](client._internal_namespace.SavedObjectsErrorHelpers.md#createtoomanyrequestserror)
-- [createUnsupportedTypeError](client._internal_namespace.SavedObjectsErrorHelpers.md#createunsupportedtypeerror)
-- [decorateBadRequestError](client._internal_namespace.SavedObjectsErrorHelpers.md#decoratebadrequesterror)
-- [decorateConflictError](client._internal_namespace.SavedObjectsErrorHelpers.md#decorateconflicterror)
-- [decorateEsCannotExecuteScriptError](client._internal_namespace.SavedObjectsErrorHelpers.md#decorateescannotexecutescripterror)
-- [decorateEsUnavailableError](client._internal_namespace.SavedObjectsErrorHelpers.md#decorateesunavailableerror)
-- [decorateForbiddenError](client._internal_namespace.SavedObjectsErrorHelpers.md#decorateforbiddenerror)
-- [decorateGeneralError](client._internal_namespace.SavedObjectsErrorHelpers.md#decorategeneralerror)
-- [decorateIndexAliasNotFoundError](client._internal_namespace.SavedObjectsErrorHelpers.md#decorateindexaliasnotfounderror)
-- [decorateNotAuthorizedError](client._internal_namespace.SavedObjectsErrorHelpers.md#decoratenotauthorizederror)
-- [decorateRequestEntityTooLargeError](client._internal_namespace.SavedObjectsErrorHelpers.md#decoraterequestentitytoolargeerror)
-- [decorateTooManyRequestsError](client._internal_namespace.SavedObjectsErrorHelpers.md#decoratetoomanyrequestserror)
-- [isBadRequestError](client._internal_namespace.SavedObjectsErrorHelpers.md#isbadrequesterror)
-- [isConflictError](client._internal_namespace.SavedObjectsErrorHelpers.md#isconflicterror)
-- [isEsCannotExecuteScriptError](client._internal_namespace.SavedObjectsErrorHelpers.md#isescannotexecutescripterror)
-- [isEsUnavailableError](client._internal_namespace.SavedObjectsErrorHelpers.md#isesunavailableerror)
-- [isForbiddenError](client._internal_namespace.SavedObjectsErrorHelpers.md#isforbiddenerror)
-- [isGeneralError](client._internal_namespace.SavedObjectsErrorHelpers.md#isgeneralerror)
-- [isInvalidVersionError](client._internal_namespace.SavedObjectsErrorHelpers.md#isinvalidversionerror)
-- [isNotAuthorizedError](client._internal_namespace.SavedObjectsErrorHelpers.md#isnotauthorizederror)
-- [isNotFoundError](client._internal_namespace.SavedObjectsErrorHelpers.md#isnotfounderror)
-- [isRequestEntityTooLargeError](client._internal_namespace.SavedObjectsErrorHelpers.md#isrequestentitytoolargeerror)
-- [isSavedObjectsClientError](client._internal_namespace.SavedObjectsErrorHelpers.md#issavedobjectsclienterror)
-- [isTooManyRequestsError](client._internal_namespace.SavedObjectsErrorHelpers.md#istoomanyrequestserror)
-
-## Constructors
-
-### constructor
-
-• **new SavedObjectsErrorHelpers**()
-
-## Methods
-
-### createBadRequestError
-
-▸ `Static` **createBadRequestError**(`reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:12
-
-___
-
-### createConflictError
-
-▸ `Static` **createConflictError**(`type`, `id`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:28
-
-___
-
-### createGenericNotFoundError
-
-▸ `Static` **createGenericNotFoundError**(`type?`, `id?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type?` | ``null`` \| `string` |
-| `id?` | ``null`` \| `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:23
-
-___
-
-### createGenericNotFoundEsUnavailableError
-
-▸ `Static` **createGenericNotFoundEsUnavailableError**(`type?`, `id?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type?` | ``null`` \| `string` |
-| `id?` | ``null`` \| `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:39
-
-___
-
-### createIndexAliasNotFoundError
-
-▸ `Static` **createIndexAliasNotFoundError**(`alias`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `alias` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:24
-
-___
-
-### createInvalidVersionError
-
-▸ `Static` **createInvalidVersionError**(`versionInput?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `versionInput?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:15
-
-___
-
-### createTooManyRequestsError
-
-▸ `Static` **createTooManyRequestsError**(`type`, `id`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:31
-
-___
-
-### createUnsupportedTypeError
-
-▸ `Static` **createUnsupportedTypeError**(`type`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:13
-
-___
-
-### decorateBadRequestError
-
-▸ `Static` **decorateBadRequestError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:11
-
-___
-
-### decorateConflictError
-
-▸ `Static` **decorateConflictError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:27
-
-___
-
-### decorateEsCannotExecuteScriptError
-
-▸ `Static` **decorateEsCannotExecuteScriptError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:33
-
-___
-
-### decorateEsUnavailableError
-
-▸ `Static` **decorateEsUnavailableError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:35
-
-___
-
-### decorateForbiddenError
-
-▸ `Static` **decorateForbiddenError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:19
-
-___
-
-### decorateGeneralError
-
-▸ `Static` **decorateGeneralError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:37
-
-___
-
-### decorateIndexAliasNotFoundError
-
-▸ `Static` **decorateIndexAliasNotFoundError**(`error`, `alias`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `alias` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:25
-
-___
-
-### decorateNotAuthorizedError
-
-▸ `Static` **decorateNotAuthorizedError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:17
-
-___
-
-### decorateRequestEntityTooLargeError
-
-▸ `Static` **decorateRequestEntityTooLargeError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:21
-
-___
-
-### decorateTooManyRequestsError
-
-▸ `Static` **decorateTooManyRequestsError**(`error`, `reason?`): [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `Error` |
-| `reason?` | `string` |
-
-#### Returns
-
-[`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:30
-
-___
-
-### isBadRequestError
-
-▸ `Static` **isBadRequestError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:14
-
-___
-
-### isConflictError
-
-▸ `Static` **isConflictError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:29
-
-___
-
-### isEsCannotExecuteScriptError
-
-▸ `Static` **isEsCannotExecuteScriptError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:34
-
-___
-
-### isEsUnavailableError
-
-▸ `Static` **isEsUnavailableError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:36
-
-___
-
-### isForbiddenError
-
-▸ `Static` **isForbiddenError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:20
-
-___
-
-### isGeneralError
-
-▸ `Static` **isGeneralError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:38
-
-___
-
-### isInvalidVersionError
-
-▸ `Static` **isInvalidVersionError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:16
-
-___
-
-### isNotAuthorizedError
-
-▸ `Static` **isNotAuthorizedError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:18
-
-___
-
-### isNotFoundError
-
-▸ `Static` **isNotFoundError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:26
-
-___
-
-### isRequestEntityTooLargeError
-
-▸ `Static` **isRequestEntityTooLargeError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:22
-
-___
-
-### isSavedObjectsClientError
-
-▸ `Static` **isSavedObjectsClientError**(`error`): error is DecoratedError
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `any` |
-
-#### Returns
-
-error is DecoratedError
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:10
-
-___
-
-### isTooManyRequestsError
-
-▸ `Static` **isTooManyRequestsError**(`error`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`DecoratedError`](../interfaces/client._internal_namespace.DecoratedError.md) \| `Error` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:32
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsRepository.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsRepository.md
deleted file mode 100644
index 967fa67b35640..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SavedObjectsRepository.md
+++ /dev/null
@@ -1,1082 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsRepository
-
-# Class: SavedObjectsRepository
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsRepository
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SavedObjectsRepository.md#constructor)
-
-### Properties
-
-- [\_allowedTypes](client._internal_namespace.SavedObjectsRepository.md#_allowedtypes)
-- [\_index](client._internal_namespace.SavedObjectsRepository.md#_index)
-- [\_logger](client._internal_namespace.SavedObjectsRepository.md#_logger)
-- [\_mappings](client._internal_namespace.SavedObjectsRepository.md#_mappings)
-- [\_migrator](client._internal_namespace.SavedObjectsRepository.md#_migrator)
-- [\_rawToSavedObject](client._internal_namespace.SavedObjectsRepository.md#_rawtosavedobject)
-- [\_registry](client._internal_namespace.SavedObjectsRepository.md#_registry)
-- [\_serializer](client._internal_namespace.SavedObjectsRepository.md#_serializer)
-- [client](client._internal_namespace.SavedObjectsRepository.md#client)
-- [getIndexForType](client._internal_namespace.SavedObjectsRepository.md#getindexfortype)
-- [getIndicesForTypes](client._internal_namespace.SavedObjectsRepository.md#getindicesfortypes)
-- [incrementCounterInternal](client._internal_namespace.SavedObjectsRepository.md#incrementcounterinternal)
-- [preflightCheckForUpsertAliasConflict](client._internal_namespace.SavedObjectsRepository.md#preflightcheckforupsertaliasconflict)
-- [preflightCheckNamespaces](client._internal_namespace.SavedObjectsRepository.md#preflightchecknamespaces)
-- [rawDocExistsInNamespace](client._internal_namespace.SavedObjectsRepository.md#rawdocexistsinnamespace)
-- [rawDocExistsInNamespaces](client._internal_namespace.SavedObjectsRepository.md#rawdocexistsinnamespaces)
-- [validateInitialNamespaces](client._internal_namespace.SavedObjectsRepository.md#validateinitialnamespaces)
-- [validateObjectAttributes](client._internal_namespace.SavedObjectsRepository.md#validateobjectattributes)
-- [validateObjectNamespaces](client._internal_namespace.SavedObjectsRepository.md#validateobjectnamespaces)
-
-### Methods
-
-- [bulkCreate](client._internal_namespace.SavedObjectsRepository.md#bulkcreate)
-- [bulkGet](client._internal_namespace.SavedObjectsRepository.md#bulkget)
-- [bulkResolve](client._internal_namespace.SavedObjectsRepository.md#bulkresolve)
-- [bulkUpdate](client._internal_namespace.SavedObjectsRepository.md#bulkupdate)
-- [checkConflicts](client._internal_namespace.SavedObjectsRepository.md#checkconflicts)
-- [closePointInTime](client._internal_namespace.SavedObjectsRepository.md#closepointintime)
-- [collectMultiNamespaceReferences](client._internal_namespace.SavedObjectsRepository.md#collectmultinamespacereferences)
-- [create](client._internal_namespace.SavedObjectsRepository.md#create)
-- [createPointInTimeFinder](client._internal_namespace.SavedObjectsRepository.md#createpointintimefinder)
-- [delete](client._internal_namespace.SavedObjectsRepository.md#delete)
-- [deleteByNamespace](client._internal_namespace.SavedObjectsRepository.md#deletebynamespace)
-- [find](client._internal_namespace.SavedObjectsRepository.md#find)
-- [get](client._internal_namespace.SavedObjectsRepository.md#get)
-- [incrementCounter](client._internal_namespace.SavedObjectsRepository.md#incrementcounter)
-- [openPointInTimeForType](client._internal_namespace.SavedObjectsRepository.md#openpointintimefortype)
-- [removeReferencesTo](client._internal_namespace.SavedObjectsRepository.md#removereferencesto)
-- [resolve](client._internal_namespace.SavedObjectsRepository.md#resolve)
-- [update](client._internal_namespace.SavedObjectsRepository.md#update)
-- [updateObjectsSpaces](client._internal_namespace.SavedObjectsRepository.md#updateobjectsspaces)
-- [createRepository](client._internal_namespace.SavedObjectsRepository.md#createrepository)
-
-## Constructors
-
-### constructor
-
-• `Private` **new SavedObjectsRepository**()
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:88
-
-## Properties
-
-### \_allowedTypes
-
-• `Private` **\_allowedTypes**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:75
-
-___
-
-### \_index
-
-• `Private` **\_index**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:72
-
-___
-
-### \_logger
-
-• `Private` **\_logger**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:78
-
-___
-
-### \_mappings
-
-• `Private` **\_mappings**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:73
-
-___
-
-### \_migrator
-
-• `Private` **\_migrator**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:71
-
-___
-
-### \_rawToSavedObject
-
-• `Private` **\_rawToSavedObject**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:445
-
-___
-
-### \_registry
-
-• `Private` **\_registry**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:74
-
-___
-
-### \_serializer
-
-• `Private` **\_serializer**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:77
-
-___
-
-### client
-
-• `Private` `Readonly` **client**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:76
-
-___
-
-### getIndexForType
-
-• `Private` **getIndexForType**: `any`
-
-Returns index specified by the given type or the default index
-
-**`param`** the type
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:436
-
-___
-
-### getIndicesForTypes
-
-• `Private` **getIndicesForTypes**: `any`
-
-Returns an array of indices as specified in `this._registry` for each of the
-given `types`. If any of the types don't have an associated index, the
-default index `this._index` will be included.
-
-**`param`** The types whose indices should be retrieved
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:444
-
-___
-
-### incrementCounterInternal
-
-• `Private` **incrementCounterInternal**: `any`
-
-**`internal`** incrementCounter function that is used internally and bypasses validation checks.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:305
-
-___
-
-### preflightCheckForUpsertAliasConflict
-
-• `Private` **preflightCheckForUpsertAliasConflict**: `any`
-
-Pre-flight check to ensure that an upsert which would create a new object does not result in an alias conflict.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:455
-
-___
-
-### preflightCheckNamespaces
-
-• `Private` **preflightCheckNamespaces**: `any`
-
-Pre-flight check to ensure that a multi-namespace object exists in the current namespace.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:451
-
-___
-
-### rawDocExistsInNamespace
-
-• `Private` **rawDocExistsInNamespace**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:447
-
-___
-
-### rawDocExistsInNamespaces
-
-• `Private` **rawDocExistsInNamespaces**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:446
-
-___
-
-### validateInitialNamespaces
-
-• `Private` **validateInitialNamespaces**: `any`
-
-The `initialNamespaces` field (create, bulkCreate) is used to create an object in an initial set of spaces.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:457
-
-___
-
-### validateObjectAttributes
-
-• `Private` **validateObjectAttributes**: `any`
-
-Validate a migrated doc against the registered saved object type's schema.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:461
-
-___
-
-### validateObjectNamespaces
-
-• `Private` **validateObjectNamespaces**: `any`
-
-The object-specific `namespaces` field (bulkGet) is used to check if an object exists in any of a given number of spaces.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:459
-
-## Methods
-
-### bulkCreate
-
-▸ **bulkCreate**<`T`\>(`objects`, `options?`): `Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-Creates multiple documents at once
-
-**`property`** {boolean} [options.overwrite=false] - overwrites existing documents
-
-**`property`** {string} [options.namespace]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects` | [`SavedObjectsBulkCreateObject`](../interfaces/client._internal_namespace.SavedObjectsBulkCreateObject.md)<`T`\>[] | [{ type, id, attributes, references, migrationVersion }] |
-| `options?` | [`SavedObjectsCreateOptions`](../interfaces/client._internal_namespace.SavedObjectsCreateOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-- {saved_objects: [[{ id, type, version, references, attributes, error: { message } }]}
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:112
-
-___
-
-### bulkGet
-
-▸ **bulkGet**<`T`\>(`objects?`, `options?`): `Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-Returns an array of objects by id
-
-**`property`** {string} [options.namespace]
-
-**`example`**
-
-bulkGet([
- { id: 'one', type: 'config' },
- { id: 'foo', type: 'index-pattern' }
-])
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects?` | [`SavedObjectsBulkGetObject`](../interfaces/client._internal_namespace.SavedObjectsBulkGetObject.md)[] | an array of objects containing id, type and optionally fields |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)<`T`\>\>
-
-- { saved_objects: [{ id, type, version, attributes }] }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:169
-
-___
-
-### bulkResolve
-
-▸ **bulkResolve**<`T`\>(`objects`, `options?`): `Promise`<[`SavedObjectsBulkResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md)<`T`\>\>
-
-Resolves an array of objects by id, using any legacy URL aliases if they exist
-
-**`property`** {string} [options.namespace]
-
-**`example`**
-
-bulkResolve([
- { id: 'one', type: 'config' },
- { id: 'foo', type: 'index-pattern' }
-])
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects` | [`SavedObjectsBulkResolveObject`](../interfaces/client._internal_namespace.SavedObjectsBulkResolveObject.md)[] | an array of objects containing id, type |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md)<`T`\>\>
-
-- { resolved_objects: [{ saved_object, outcome }] }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:184
-
-___
-
-### bulkUpdate
-
-▸ **bulkUpdate**<`T`\>(`objects`, `options?`): `Promise`<[`SavedObjectsBulkUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md)<`T`\>\>
-
-Updates multiple objects in bulk
-
-**`property`** {string} options.version - ensures version matches that of persisted object
-
-**`property`** {string} [options.namespace]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects` | [`SavedObjectsBulkUpdateObject`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateObject.md)<`T`\>[] | [{ type, id, attributes, options: { version, namespace } references }] |
-| `options?` | [`SavedObjectsBulkUpdateOptions`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsBulkUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md)<`T`\>\>
-
-- {saved_objects: [[{ id, type, version, references, attributes, error: { message } }]}
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:241
-
-___
-
-### checkConflicts
-
-▸ **checkConflicts**(`objects?`, `options?`): `Promise`<[`SavedObjectsCheckConflictsResponse`](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md)\>
-
-Check what conflicts will result when creating a given array of saved objects. This includes "unresolvable conflicts", which are
-multi-namespace objects that exist in a different namespace; such conflicts cannot be resolved/overwritten.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects?` | [`SavedObjectsCheckConflictsObject`](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsObject.md)[] |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsCheckConflictsResponse`](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:117
-
-___
-
-### closePointInTime
-
-▸ **closePointInTime**(`id`, `options?`): `Promise`<[`SavedObjectsClosePointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md)\>
-
-Closes a Point In Time (PIT) by ID. This simply proxies the request to ES
-via the Elasticsearch client, and is included in the Saved Objects Client
-as a convenience for consumers who are using `openPointInTimeForType`.
-
-Only use this API if you have an advanced use case that's not solved by the
-[SavedObjectsRepository.createPointInTimeFinder](client._internal_namespace.SavedObjectsRepository.md#createpointintimefinder) method.
-
-**`remarks`**
-While the `keepAlive` that is provided will cause a PIT to automatically close,
-it is highly recommended to explicitly close a PIT when you are done with it
-in order to avoid consuming unneeded resources in Elasticsearch.
-
-**`example`**
-```ts
-const repository = coreStart.savedObjects.createInternalRepository();
-
-const { id } = await repository.openPointInTimeForType(
- type: 'index-pattern',
- { keepAlive: '2m' },
-);
-
-const response = await repository.find({
- type: 'index-pattern',
- search: 'foo*',
- sortField: 'name',
- sortOrder: 'desc',
- pit: {
- id: 'abc123',
- keepAlive: '2m',
- },
- searchAfter: [1234, 'abcd'],
-});
-
-await repository.closePointInTime(response.pit_id);
-```
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `id` | `string` |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsClosePointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md)\>
-
-- [SavedObjectsClosePointInTimeResponse](../interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:384
-
-___
-
-### collectMultiNamespaceReferences
-
-▸ **collectMultiNamespaceReferences**(`objects`, `options?`): `Promise`<[`SavedObjectsCollectMultiNamespaceReferencesResponse`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md)\>
-
-Gets all references and transitive references of the given objects. Ignores any object and/or reference that is not a multi-namespace
-type.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `objects` | [`SavedObjectsCollectMultiNamespaceReferencesObject`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md)[] | The objects to get the references for. |
-| `options?` | [`SavedObjectsCollectMultiNamespaceReferencesOptions`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md) | - |
-
-#### Returns
-
-`Promise`<[`SavedObjectsCollectMultiNamespaceReferencesResponse`](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:223
-
-___
-
-### create
-
-▸ **create**<`T`\>(`type`, `attributes`, `options?`): `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-Persists an object
-
-**`property`** {string} [options.id] - force id on creation, not recommended
-
-**`property`** {boolean} [options.overwrite=false]
-
-**`property`** {object} [options.migrationVersion=undefined]
-
-**`property`** {string} [options.namespace]
-
-**`property`** {array} [options.references=[]] - [{ name, type, id }]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `attributes` | `T` |
-| `options?` | [`SavedObjectsCreateOptions`](../interfaces/client._internal_namespace.SavedObjectsCreateOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-- { id, type, version, attributes }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:102
-
-___
-
-### createPointInTimeFinder
-
-▸ **createPointInTimeFinder**<`T`, `A`\>(`findOptions`, `dependencies?`): [`ISavedObjectsPointInTimeFinder`](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md)<`T`, `A`\>
-
-Returns a [ISavedObjectsPointInTimeFinder](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md) to help page through
-large sets of saved objects. We strongly recommend using this API for
-any `find` queries that might return more than 1000 saved objects,
-however this API is only intended for use in server-side "batch"
-processing of objects where you are collecting all objects in memory
-or streaming them back to the client.
-
-Do NOT use this API in a route handler to facilitate paging through
-saved objects on the client-side unless you are streaming all of the
-results back to the client at once. Because the returned generator is
-stateful, you cannot rely on subsequent http requests retrieving new
-pages from the same Kibana server in multi-instance deployments.
-
-This generator wraps calls to [SavedObjectsRepository.find](client._internal_namespace.SavedObjectsRepository.md#find) and
-iterates over multiple pages of results using `_pit` and `search_after`.
-This will open a new Point-In-Time (PIT), and continue paging until a
-set of results is received that's smaller than the designated `perPage`.
-
-Once you have retrieved all of the results you need, it is recommended
-to call `close()` to clean up the PIT and prevent Elasticsearch from
-consuming resources unnecessarily. This is only required if you are
-done iterating and have not yet paged through all of the results: the
-PIT will automatically be closed for you once you reach the last page
-of results, or if the underlying call to `find` fails for any reason.
-
-**`example`**
-```ts
-const findOptions: SavedObjectsCreatePointInTimeFinderOptions = {
- type: 'visualization',
- search: 'foo*',
- perPage: 100,
-};
-
-const finder = savedObjectsClient.createPointInTimeFinder(findOptions);
-
-const responses: SavedObjectFindResponse[] = [];
-for await (const response of finder.find()) {
- responses.push(...response);
- if (doneSearching) {
- await finder.close();
- }
-}
-```
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-| `A` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `findOptions` | [`SavedObjectsCreatePointInTimeFinderOptions`](../modules/client._internal_namespace.md#savedobjectscreatepointintimefinderoptions) |
-| `dependencies?` | [`SavedObjectsCreatePointInTimeFinderDependencies`](../interfaces/client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md) |
-
-#### Returns
-
-[`ISavedObjectsPointInTimeFinder`](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md)<`T`, `A`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:430
-
-___
-
-### delete
-
-▸ **delete**(`type`, `id`, `options?`): `Promise`<{}\>
-
-Deletes an object
-
-**`property`** {string} [options.namespace]
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsDeleteOptions`](../interfaces/client._internal_namespace.SavedObjectsDeleteOptions.md) |
-
-#### Returns
-
-`Promise`<{}\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:127
-
-___
-
-### deleteByNamespace
-
-▸ **deleteByNamespace**(`namespace`, `options?`): `Promise`<`any`\>
-
-Deletes all objects from the provided namespace.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `namespace` | `string` |
-| `options?` | [`SavedObjectsDeleteByNamespaceOptions`](../interfaces/client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md) |
-
-#### Returns
-
-`Promise`<`any`\>
-
-- { took, timed_out, total, deleted, batches, version_conflicts, noops, retries, failures }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:134
-
-___
-
-### find
-
-▸ **find**<`T`, `A`\>(`options`): `Promise`<[`SavedObjectsFindResponse`](../interfaces/client._internal_namespace.SavedObjectsFindResponse.md)<`T`, `A`\>\>
-
-**`property`** {(string|Array)} [options.type]
-
-**`property`** {string} [options.search]
-
-**`property`** {string} [options.defaultSearchOperator]
-
-**`property`** {Array} [options.searchFields] - see Elasticsearch Simple Query String
- Query field argument for more information
-
-**`property`** {integer} [options.page=1]
-
-**`property`** {integer} [options.perPage=20]
-
-**`property`** {Array} [options.searchAfter]
-
-**`property`** {string} [options.sortField]
-
-**`property`** {string} [options.sortOrder]
-
-**`property`** {Array} [options.fields]
-
-**`property`** {string} [options.namespace]
-
-**`property`** {object} [options.hasReference] - { type, id }
-
-**`property`** {string} [options.pit]
-
-**`property`** {string} [options.preference]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-| `A` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `options` | [`SavedObjectsFindOptions`](../interfaces/client._internal_namespace.SavedObjectsFindOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsFindResponse`](../interfaces/client._internal_namespace.SavedObjectsFindResponse.md)<`T`, `A`\>\>
-
-- { saved_objects: [{ id, type, version, attributes }], total, per_page, page }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:154
-
-___
-
-### get
-
-▸ **get**<`T`\>(`type`, `id`, `options?`): `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-Gets a single object
-
-**`property`** {string} [options.namespace]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-- { id, type, version, attributes }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:194
-
-___
-
-### incrementCounter
-
-▸ **incrementCounter**<`T`\>(`type`, `id`, `counterFields`, `options?`): `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-Increments all the specified counter fields (by one by default). Creates the document
-if one doesn't exist for the given id.
-
-**`remarks`**
-When supplying a field name like `stats.api.counter` the field name will
-be used as-is to create a document like:
- `{attributes: {'stats.api.counter': 1}}`
-It will not create a nested structure like:
- `{attributes: {stats: {api: {counter: 1}}}}`
-
-When using incrementCounter for collecting usage data, you need to ensure
-that usage collection happens on a best-effort basis and doesn't
-negatively affect your plugin or users. See https://github.com/elastic/kibana/blob/main/src/plugins/usage_collection/README.mdx#tracking-interactions-with-incrementcounter)
-
-**`example`**
-```ts
-const repository = coreStart.savedObjects.createInternalRepository();
-
-// Initialize all fields to 0
-repository
- .incrementCounter('dashboard_counter_type', 'counter_id', [
- 'stats.apiCalls',
- 'stats.sampleDataInstalled',
- ], {initialize: true});
-
-// Increment the apiCalls field counter
-repository
- .incrementCounter('dashboard_counter_type', 'counter_id', [
- 'stats.apiCalls',
- ])
-
-// Increment the apiCalls field counter by 4
-repository
- .incrementCounter('dashboard_counter_type', 'counter_id', [
- { fieldName: 'stats.apiCalls' incrementBy: 4 },
- ])
-
-// Initialize the document with arbitrary fields if not present
-repository.incrementCounter<{ appId: string }>(
- 'dashboard_counter_type',
- 'counter_id',
- [ 'stats.apiCalls'],
- { upsertAttributes: { appId: 'myId' } }
-)
-```
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `type` | `string` | The type of saved object whose fields should be incremented |
-| `id` | `string` | The id of the document whose fields should be incremented |
-| `counterFields` | (`string` \| [`SavedObjectsIncrementCounterField`](../interfaces/client._internal_namespace.SavedObjectsIncrementCounterField.md))[] | An array of field names to increment or an array of [SavedObjectsIncrementCounterField](../interfaces/client._internal_namespace.SavedObjectsIncrementCounterField.md) |
-| `options?` | [`SavedObjectsIncrementCounterOptions`](../interfaces/client._internal_namespace.SavedObjectsIncrementCounterOptions.md)<`T`\> | [SavedObjectsIncrementCounterOptions](../interfaces/client._internal_namespace.SavedObjectsIncrementCounterOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>\>
-
-The saved object after the specified fields were incremented
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:303
-
-___
-
-### openPointInTimeForType
-
-▸ **openPointInTimeForType**(`type`, `[options]?`): `Promise`<[`SavedObjectsOpenPointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md)\>
-
-Opens a Point In Time (PIT) against the indices for the specified Saved Object types.
-The returned `id` can then be passed to `SavedObjects.find` to search against that PIT.
-
-Only use this API if you have an advanced use case that's not solved by the
-[SavedObjectsRepository.createPointInTimeFinder](client._internal_namespace.SavedObjectsRepository.md#createpointintimefinder) method.
-
-**`example`**
-```ts
-const { id } = await savedObjectsClient.openPointInTimeForType(
- type: 'visualization',
- { keepAlive: '5m' },
-);
-const page1 = await savedObjectsClient.find({
- type: 'visualization',
- sortField: 'updated_at',
- sortOrder: 'asc',
- pit: { id, keepAlive: '2m' },
-});
-const lastHit = page1.saved_objects[page1.saved_objects.length - 1];
-const page2 = await savedObjectsClient.find({
- type: 'visualization',
- sortField: 'updated_at',
- sortOrder: 'asc',
- pit: { id: page1.pit_id },
- searchAfter: lastHit.sort,
-});
-await savedObjectsClient.closePointInTime(page2.pit_id);
-```
-
-**`property`** {string} [options.keepAlive]
-
-**`property`** {string} [options.preference]
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `type` | `string` \| `string`[] | |
-| `[options]?` | [`SavedObjectsOpenPointInTimeOptions`](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md) | [SavedObjectsOpenPointInTimeOptions](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsOpenPointInTimeResponse`](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md)\>
-
-- { id: string }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:342
-
-___
-
-### removeReferencesTo
-
-▸ **removeReferencesTo**(`type`, `id`, `options?`): `Promise`<[`SavedObjectsRemoveReferencesToResponse`](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md)\>
-
-Updates all objects containing a reference to the given {type, id} tuple to remove the said reference.
-
-**`remarks`** Will throw a conflict error if the `update_by_query` operation returns any failure. In that case
- some references might have been removed, and some were not. It is the caller's responsibility
- to handle and fix this situation if it was to happen.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsRemoveReferencesToOptions`](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsRemoveReferencesToResponse`](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:249
-
-___
-
-### resolve
-
-▸ **resolve**<`T`\>(`type`, `id`, `options?`): `Promise`<[`SavedObjectsResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsResolveResponse.md)<`T`\>\>
-
-Resolves a single object, using any legacy URL alias if it exists
-
-**`property`** {string} [options.namespace]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsBaseOptions`](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsResolveResponse`](../interfaces/client._internal_namespace.SavedObjectsResolveResponse.md)<`T`\>\>
-
-- { saved_object, outcome }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:204
-
-___
-
-### update
-
-▸ **update**<`T`\>(`type`, `id`, `attributes`, `options?`): `Promise`<[`SavedObjectsUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md)<`T`\>\>
-
-Updates an object
-
-**`property`** {string} options.version - ensures version matches that of persisted object
-
-**`property`** {string} [options.namespace]
-
-**`property`** {array} [options.references] - [{ name, type, id }]
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `attributes` | `Partial`<`T`\> |
-| `options?` | [`SavedObjectsUpdateOptions`](../interfaces/client._internal_namespace.SavedObjectsUpdateOptions.md)<`T`\> |
-
-#### Returns
-
-`Promise`<[`SavedObjectsUpdateResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md)<`T`\>\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:216
-
-___
-
-### updateObjectsSpaces
-
-▸ **updateObjectsSpaces**(`objects`, `spacesToAdd`, `spacesToRemove`, `options?`): `Promise`<[`SavedObjectsUpdateObjectsSpacesResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md)\>
-
-Updates one or more objects to add and/or remove them from specified spaces.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects` | [`SavedObjectsUpdateObjectsSpacesObject`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md)[] |
-| `spacesToAdd` | `string`[] |
-| `spacesToRemove` | `string`[] |
-| `options?` | [`SavedObjectsUpdateObjectsSpacesOptions`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObjectsUpdateObjectsSpacesResponse`](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:232
-
-___
-
-### createRepository
-
-▸ `Static` **createRepository**(`migrator`, `typeRegistry`, `indexName`, `client`, `logger`, `includedHiddenTypes?`, `injectedConstructor?`): [`ISavedObjectsRepository`](../modules/client._internal_namespace.md#isavedobjectsrepository)
-
-A factory function for creating SavedObjectRepository instances.
-
-**`internalremarks`**
-Tests are located in ./repository_create_repository.test.ts
-
-**`internal`**
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `migrator` | [`IKibanaMigrator`](../modules/client._internal_namespace.md#ikibanamigrator) |
-| `typeRegistry` | [`ISavedObjectTypeRegistry`](../modules/client._internal_namespace.md#isavedobjecttyperegistry) |
-| `indexName` | `string` |
-| `client` | [`ElasticsearchClient`](../modules/client._internal_namespace.md#elasticsearchclient) |
-| `logger` | `Logger` |
-| `includedHiddenTypes?` | `string`[] |
-| `injectedConstructor?` | `any` |
-
-#### Returns
-
-[`ISavedObjectsRepository`](../modules/client._internal_namespace.md#isavedobjectsrepository)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:87
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SpaceActions.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SpaceActions.md
deleted file mode 100644
index b39329e27b8ba..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SpaceActions.md
+++ /dev/null
@@ -1,59 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SpaceActions
-
-# Class: SpaceActions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SpaceActions
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SpaceActions.md#constructor)
-
-### Properties
-
-- [prefix](client._internal_namespace.SpaceActions.md#prefix)
-
-### Accessors
-
-- [manage](client._internal_namespace.SpaceActions.md#manage)
-
-## Constructors
-
-### constructor
-
-• **new SpaceActions**(`versionNumber`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `versionNumber` | `string` |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/space.d.ts:3
-
-## Properties
-
-### prefix
-
-• `Private` `Readonly` **prefix**: `any`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/space.d.ts:2
-
-## Accessors
-
-### manage
-
-• `get` **manage**(): `string`
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/space.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SubFeature.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SubFeature.md
deleted file mode 100644
index 4e300b2231285..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.SubFeature.md
+++ /dev/null
@@ -1,97 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SubFeature
-
-# Class: SubFeature
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SubFeature
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.SubFeature.md#constructor)
-
-### Properties
-
-- [config](client._internal_namespace.SubFeature.md#config)
-
-### Accessors
-
-- [name](client._internal_namespace.SubFeature.md#name)
-- [privilegeGroups](client._internal_namespace.SubFeature.md#privilegegroups)
-
-### Methods
-
-- [toRaw](client._internal_namespace.SubFeature.md#toraw)
-
-## Constructors
-
-### constructor
-
-• **new SubFeature**(`config`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `config` | `Readonly`<{ `name`: `string` ; `privilegeGroups`: readonly `Readonly`<{ groupType: SubFeaturePrivilegeGroupType; privileges: readonly Readonly<{ id: string; name: string; includeIn: "all" \| "none" \| "read"; minimumLicense?: "basic" \| "standard" \| ... 4 more ... \| undefined; ... 9 more ...; ui: readonly string[]; }\>[]; }\>[] }\> |
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:66
-
-## Properties
-
-### config
-
-• `Protected` `Readonly` **config**: `Readonly`<{ `name`: `string` ; `privilegeGroups`: readonly `Readonly`<{ groupType: SubFeaturePrivilegeGroupType; privileges: readonly Readonly<{ id: string; name: string; includeIn: "all" \| "none" \| "read"; minimumLicense?: "basic" \| "standard" \| ... 4 more ... \| undefined; ... 9 more ...; ui: readonly string[]; }\>[]; }\>[] }\>
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:65
-
-## Accessors
-
-### name
-
-• `get` **name**(): `string`
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:67
-
-___
-
-### privilegeGroups
-
-• `get` **privilegeGroups**(): readonly `Readonly`<{ `groupType`: [`SubFeaturePrivilegeGroupType`](../modules/client._internal_namespace.md#subfeatureprivilegegrouptype) ; `privileges`: readonly Readonly<{ id: string; name: string; includeIn: "all" \| "none" \| "read"; minimumLicense?: "basic" \| "standard" \| "gold" \| "platinum" \| "enterprise" \| "trial" \| undefined; management?: Readonly<{ [x: string]: readonly string[]; }\> \| undefined; ... 8 more ...; savedObject: Readonly<...\>; }\>[] }\>[]
-
-#### Returns
-
-readonly `Readonly`<{ `groupType`: [`SubFeaturePrivilegeGroupType`](../modules/client._internal_namespace.md#subfeatureprivilegegrouptype) ; `privileges`: readonly Readonly<{ id: string; name: string; includeIn: "all" \| "none" \| "read"; minimumLicense?: "basic" \| "standard" \| "gold" \| "platinum" \| "enterprise" \| "trial" \| undefined; management?: Readonly<{ [x: string]: readonly string[]; }\> \| undefined; ... 8 more ...; savedObject: Readonly<...\>; }\>[] }\>[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:68
-
-## Methods
-
-### toRaw
-
-▸ **toRaw**(): `Object`
-
-#### Returns
-
-`Object`
-
-| Name | Type |
-| :------ | :------ |
-| `name` | `string` |
-| `privilegeGroups` | readonly `Readonly`<{ `groupType`: [`SubFeaturePrivilegeGroupType`](../modules/client._internal_namespace.md#subfeatureprivilegegrouptype) ; `privileges`: readonly Readonly<{ id: string; name: string; includeIn: "all" \| "none" \| "read"; minimumLicense?: "basic" \| "standard" \| "gold" \| "platinum" \| "enterprise" \| "trial" \| undefined; management?: Readonly<{ [x: string]: readonly string[]; }\> \| undefined; ... 8 more ...; savedObject: Readonly<...\>; }\>[] }\>[] |
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:104
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.TaskRunnerFactory.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.TaskRunnerFactory.md
deleted file mode 100644
index 7aed74f96c698..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.TaskRunnerFactory.md
+++ /dev/null
@@ -1,114 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskRunnerFactory
-
-# Class: TaskRunnerFactory
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskRunnerFactory
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.TaskRunnerFactory.md#constructor)
-
-### Properties
-
-- [actionExecutor](client._internal_namespace.TaskRunnerFactory.md#actionexecutor)
-- [isInitialized](client._internal_namespace.TaskRunnerFactory.md#isinitialized)
-- [taskRunnerContext](client._internal_namespace.TaskRunnerFactory.md#taskrunnercontext)
-
-### Methods
-
-- [create](client._internal_namespace.TaskRunnerFactory.md#create)
-- [initialize](client._internal_namespace.TaskRunnerFactory.md#initialize)
-
-## Constructors
-
-### constructor
-
-• **new TaskRunnerFactory**(`actionExecutor`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `actionExecutor` | [`ActionExecutorContract`](../modules/client._internal_namespace.md#actionexecutorcontract) |
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:18
-
-## Properties
-
-### actionExecutor
-
-• `Private` `Readonly` **actionExecutor**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:17
-
-___
-
-### isInitialized
-
-• `Private` **isInitialized**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:15
-
-___
-
-### taskRunnerContext
-
-• `Private` `Optional` **taskRunnerContext**: `any`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:16
-
-## Methods
-
-### create
-
-▸ **create**(`__namedParameters`, `maxAttempts?`): `Object`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `__namedParameters` | [`RunContext`](../interfaces/client._internal_namespace.RunContext.md) |
-| `maxAttempts?` | `number` |
-
-#### Returns
-
-`Object`
-
-| Name | Type |
-| :------ | :------ |
-| `cancel` | () => `Promise`<{ `state`: {} }\> |
-| `run` | () => `Promise`<`void`\> |
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:20
-
-___
-
-### initialize
-
-▸ **initialize**(`taskRunnerContext`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `taskRunnerContext` | [`TaskRunnerContext`](../interfaces/client._internal_namespace.TaskRunnerContext.md) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:19
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.UIActions.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.UIActions.md
deleted file mode 100644
index 8f74b5fff8806..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.UIActions.md
+++ /dev/null
@@ -1,66 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UIActions
-
-# Class: UIActions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UIActions
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.UIActions.md#constructor)
-
-### Properties
-
-- [prefix](client._internal_namespace.UIActions.md#prefix)
-
-### Methods
-
-- [get](client._internal_namespace.UIActions.md#get)
-
-## Constructors
-
-### constructor
-
-• **new UIActions**(`versionNumber`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `versionNumber` | `string` |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/ui.d.ts:4
-
-## Properties
-
-### prefix
-
-• `Private` `Readonly` **prefix**: `any`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/ui.d.ts:3
-
-## Methods
-
-### get
-
-▸ **get**(`featureId`, ...`uiCapabilityParts`): `string`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `featureId` | keyof [`Capabilities`](../interfaces/client._internal_namespace.Capabilities.md) |
-| `...uiCapabilityParts` | `string`[] |
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/actions/ui.d.ts:5
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.UserActionBuilder.md b/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.UserActionBuilder.md
deleted file mode 100644
index 361d5e50fd923..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client._internal_namespace.UserActionBuilder.md
+++ /dev/null
@@ -1,251 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UserActionBuilder
-
-# Class: UserActionBuilder
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UserActionBuilder
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client._internal_namespace.UserActionBuilder.md#constructor)
-
-### Methods
-
-- [build](client._internal_namespace.UserActionBuilder.md#build)
-- [buildCommonUserAction](client._internal_namespace.UserActionBuilder.md#buildcommonuseraction)
-- [createActionReference](client._internal_namespace.UserActionBuilder.md#createactionreference)
-- [createCaseReferences](client._internal_namespace.UserActionBuilder.md#createcasereferences)
-- [createCommentReferences](client._internal_namespace.UserActionBuilder.md#createcommentreferences)
-- [createConnectorPushReference](client._internal_namespace.UserActionBuilder.md#createconnectorpushreference)
-- [createConnectorReference](client._internal_namespace.UserActionBuilder.md#createconnectorreference)
-- [extractConnectorId](client._internal_namespace.UserActionBuilder.md#extractconnectorid)
-- [extractConnectorIdFromExternalService](client._internal_namespace.UserActionBuilder.md#extractconnectoridfromexternalservice)
-- [getCommonUserActionAttributes](client._internal_namespace.UserActionBuilder.md#getcommonuseractionattributes)
-
-## Constructors
-
-### constructor
-
-• **new UserActionBuilder**()
-
-## Methods
-
-### build
-
-▸ `Abstract` **build**<`T`\>(`args`): [`BuilderReturnValue`](../interfaces/client._internal_namespace.BuilderReturnValue.md)
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | extends keyof [`BuilderParameters`](../interfaces/client._internal_namespace.BuilderParameters.md) |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `args` | [`UserActionParameters`](../modules/client._internal_namespace.md#useractionparameters)<`T`\> |
-
-#### Returns
-
-[`BuilderReturnValue`](../interfaces/client._internal_namespace.BuilderReturnValue.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:119](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L119)
-
-___
-
-### buildCommonUserAction
-
-▸ `Protected` **buildCommonUserAction**(`__namedParameters`): [`BuilderReturnValue`](../interfaces/client._internal_namespace.BuilderReturnValue.md)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `__namedParameters` | [`CommonBuilderArguments`](../modules/client._internal_namespace.md#commonbuilderarguments) |
-
-#### Returns
-
-[`BuilderReturnValue`](../interfaces/client._internal_namespace.BuilderReturnValue.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:88](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L88)
-
-___
-
-### createActionReference
-
-▸ `Protected` **createActionReference**(`id`, `name`): [`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `id` | ``null`` \| `string` |
-| `name` | `string` |
-
-#### Returns
-
-[`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:55](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L55)
-
-___
-
-### createCaseReferences
-
-▸ `Protected` **createCaseReferences**(`caseId`): [`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `caseId` | `string` |
-
-#### Returns
-
-[`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:45](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L45)
-
-___
-
-### createCommentReferences
-
-▸ `Protected` **createCommentReferences**(`id`): [`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `id` | ``null`` \| `string` |
-
-#### Returns
-
-[`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:61](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L61)
-
-___
-
-### createConnectorPushReference
-
-▸ `Protected` **createConnectorPushReference**(`id`): [`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `id` | ``null`` \| `string` |
-
-#### Returns
-
-[`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:77](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L77)
-
-___
-
-### createConnectorReference
-
-▸ `Protected` **createConnectorReference**(`id`): [`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `id` | ``null`` \| `string` |
-
-#### Returns
-
-[`SavedObjectReference`](../interfaces/client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:73](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L73)
-
-___
-
-### extractConnectorId
-
-▸ `Protected` **extractConnectorId**(`connector`): `Omit`<{ `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string }, ``"id"``\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `connector` | { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } |
-
-#### Returns
-
-`Omit`<{ `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string }, ``"id"``\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:40](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L40)
-
-___
-
-### extractConnectorIdFromExternalService
-
-▸ `Protected` **extractConnectorIdFromExternalService**(`externalService`): `Omit`<{ `connector_id`: `string` = rt.string } & { `connector_name`: `string` = rt.string; `external_id`: `string` = rt.string; `external_title`: `string` = rt.string; `external_url`: `string` = rt.string; `pushed_at`: `string` = rt.string; `pushed_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT }, ``"connector_id"``\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `externalService` | { `connector_id`: `string` = rt.string } & { `connector_name`: `string` = rt.string; `external_id`: `string` = rt.string; `external_title`: `string` = rt.string; `external_url`: `string` = rt.string; `pushed_at`: `string` = rt.string; `pushed_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT } |
-
-#### Returns
-
-`Omit`<{ `connector_id`: `string` = rt.string } & { `connector_name`: `string` = rt.string; `external_id`: `string` = rt.string; `external_title`: `string` = rt.string; `external_url`: `string` = rt.string; `pushed_at`: `string` = rt.string; `pushed_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT }, ``"connector_id"``\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:81](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L81)
-
-___
-
-### getCommonUserActionAttributes
-
-▸ `Protected` **getCommonUserActionAttributes**(`__namedParameters`): `Object`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `__namedParameters` | `Object` |
-| `__namedParameters.owner` | `string` |
-| `__namedParameters.user` | `Object` |
-| `__namedParameters.user.email` | `undefined` \| ``null`` \| `string` |
-| `__namedParameters.user.full_name` | `undefined` \| ``null`` \| `string` |
-| `__namedParameters.user.username` | `undefined` \| ``null`` \| `string` |
-
-#### Returns
-
-`Object`
-
-| Name | Type |
-| :------ | :------ |
-| `created_at` | `string` |
-| `created_by` | `Object` |
-| `created_by.email` | `undefined` \| ``null`` \| `string` |
-| `created_by.full_name` | `undefined` \| ``null`` \| `string` |
-| `created_by.username` | `undefined` \| ``null`` \| `string` |
-| `owner` | `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts:32](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/abstract_builder.ts#L32)
diff --git a/x-pack/plugins/cases/docs/cases_client/classes/client.casesclient.md b/x-pack/plugins/cases/docs/cases_client/classes/client.casesclient.md
deleted file mode 100644
index d00f9f0edcd88..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/classes/client.casesclient.md
+++ /dev/null
@@ -1,214 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / CasesClient
-
-# Class: CasesClient
-
-[client](../modules/client.md).CasesClient
-
-Client wrapper that contains accessor methods for individual entities within the cases system.
-
-## Table of contents
-
-### Constructors
-
-- [constructor](client.CasesClient.md#constructor)
-
-### Properties
-
-- [\_attachments](client.CasesClient.md#_attachments)
-- [\_cases](client.CasesClient.md#_cases)
-- [\_casesClientInternal](client.CasesClient.md#_casesclientinternal)
-- [\_configure](client.CasesClient.md#_configure)
-- [\_metrics](client.CasesClient.md#_metrics)
-- [\_stats](client.CasesClient.md#_stats)
-- [\_userActions](client.CasesClient.md#_useractions)
-
-### Accessors
-
-- [attachments](client.CasesClient.md#attachments)
-- [cases](client.CasesClient.md#cases)
-- [configure](client.CasesClient.md#configure)
-- [metrics](client.CasesClient.md#metrics)
-- [stats](client.CasesClient.md#stats)
-- [userActions](client.CasesClient.md#useractions)
-
-## Constructors
-
-### constructor
-
-• **new CasesClient**(`args`)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `args` | [`CasesClientArgs`](../interfaces/client._internal_namespace.CasesClientArgs.md) |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:29](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L29)
-
-## Properties
-
-### \_attachments
-
-• `Private` `Readonly` **\_attachments**: [`AttachmentsSubClient`](../interfaces/attachments_client.AttachmentsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:23](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L23)
-
-___
-
-### \_cases
-
-• `Private` `Readonly` **\_cases**: [`CasesSubClient`](../interfaces/cases_client.CasesSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:22](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L22)
-
-___
-
-### \_casesClientInternal
-
-• `Private` `Readonly` **\_casesClientInternal**: [`CasesClientInternal`](client._internal_namespace.CasesClientInternal.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:21](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L21)
-
-___
-
-### \_configure
-
-• `Private` `Readonly` **\_configure**: [`ConfigureSubClient`](../interfaces/configure_client.ConfigureSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:25](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L25)
-
-___
-
-### \_metrics
-
-• `Private` `Readonly` **\_metrics**: [`MetricsSubClient`](../interfaces/metrics_client.MetricsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:27](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L27)
-
-___
-
-### \_stats
-
-• `Private` `Readonly` **\_stats**: [`StatsSubClient`](../interfaces/stats_client.StatsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:26](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L26)
-
-___
-
-### \_userActions
-
-• `Private` `Readonly` **\_userActions**: [`UserActionsSubClient`](../interfaces/user_actions_client.UserActionsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:24](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L24)
-
-## Accessors
-
-### attachments
-
-• `get` **attachments**(): [`AttachmentsSubClient`](../interfaces/attachments_client.AttachmentsSubClient.md)
-
-Retrieves an interface for interacting with attachments (comments) entities.
-
-#### Returns
-
-[`AttachmentsSubClient`](../interfaces/attachments_client.AttachmentsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:49](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L49)
-
-___
-
-### cases
-
-• `get` **cases**(): [`CasesSubClient`](../interfaces/cases_client.CasesSubClient.md)
-
-Retrieves an interface for interacting with cases entities.
-
-#### Returns
-
-[`CasesSubClient`](../interfaces/cases_client.CasesSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:42](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L42)
-
-___
-
-### configure
-
-• `get` **configure**(): [`ConfigureSubClient`](../interfaces/configure_client.ConfigureSubClient.md)
-
-Retrieves an interface for interacting with the configuration of external connectors for the plugin entities.
-
-#### Returns
-
-[`ConfigureSubClient`](../interfaces/configure_client.ConfigureSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:63](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L63)
-
-___
-
-### metrics
-
-• `get` **metrics**(): [`MetricsSubClient`](../interfaces/metrics_client.MetricsSubClient.md)
-
-Retrieves an interface for retrieving metrics related to the cases entities.
-
-#### Returns
-
-[`MetricsSubClient`](../interfaces/metrics_client.MetricsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:77](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L77)
-
-___
-
-### stats
-
-• `get` **stats**(): [`StatsSubClient`](../interfaces/stats_client.StatsSubClient.md)
-
-Retrieves an interface for retrieving statistics related to the cases entities.
-
-#### Returns
-
-[`StatsSubClient`](../interfaces/stats_client.StatsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:70](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L70)
-
-___
-
-### userActions
-
-• `get` **userActions**(): [`UserActionsSubClient`](../interfaces/user_actions_client.UserActionsSubClient.md)
-
-Retrieves an interface for interacting with the user actions associated with the plugin entities.
-
-#### Returns
-
-[`UserActionsSubClient`](../interfaces/user_actions_client.UserActionsSubClient.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/client.ts:56](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/client.ts#L56)
diff --git a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.ActionExecutionSourceType.md b/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.ActionExecutionSourceType.md
deleted file mode 100644
index 9d4fbc639a26c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.ActionExecutionSourceType.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionExecutionSourceType
-
-# Enumeration: ActionExecutionSourceType
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionExecutionSourceType
-
-## Table of contents
-
-### Enumeration members
-
-- [HTTP\_REQUEST](client._internal_namespace.ActionExecutionSourceType.md#http_request)
-- [SAVED\_OBJECT](client._internal_namespace.ActionExecutionSourceType.md#saved_object)
-
-## Enumeration members
-
-### HTTP\_REQUEST
-
-• **HTTP\_REQUEST** = `"HTTP_REQUEST"`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_execution_source.d.ts:4
-
-___
-
-### SAVED\_OBJECT
-
-• **SAVED\_OBJECT** = `"SAVED_OBJECT"`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_execution_source.d.ts:3
diff --git a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.AuthorizationMode.md b/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.AuthorizationMode.md
deleted file mode 100644
index f1dc071f463d6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.AuthorizationMode.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuthorizationMode
-
-# Enumeration: AuthorizationMode
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuthorizationMode
-
-## Table of contents
-
-### Enumeration members
-
-- [Legacy](client._internal_namespace.AuthorizationMode.md#legacy)
-- [RBAC](client._internal_namespace.AuthorizationMode.md#rbac)
-
-## Enumeration members
-
-### Legacy
-
-• **Legacy** = `0`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/authorization/get_authorization_mode_by_source.d.ts:4
-
-___
-
-### RBAC
-
-• **RBAC** = `1`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/authorization/get_authorization_mode_by_source.d.ts:5
diff --git a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.CaseStatuses.md b/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.CaseStatuses.md
deleted file mode 100644
index 48d5689a52400..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.CaseStatuses.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CaseStatuses
-
-# Enumeration: CaseStatuses
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CaseStatuses
-
-## Table of contents
-
-### Enumeration members
-
-- [closed](client._internal_namespace.CaseStatuses.md#closed)
-- [in-progress](client._internal_namespace.CaseStatuses.md#in-progress)
-- [open](client._internal_namespace.CaseStatuses.md#open)
-
-## Enumeration members
-
-### closed
-
-• **closed** = `"closed"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/status.ts:13](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/status.ts#L13)
-
-___
-
-### in-progress
-
-• **in-progress** = `"in-progress"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/status.ts:12](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/status.ts#L12)
-
-___
-
-### open
-
-• **open** = `"open"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/status.ts:11](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/status.ts#L11)
diff --git a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.TaskStatus.md b/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.TaskStatus.md
deleted file mode 100644
index a92a96681e137..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.TaskStatus.md
+++ /dev/null
@@ -1,65 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskStatus
-
-# Enumeration: TaskStatus
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskStatus
-
-## Table of contents
-
-### Enumeration members
-
-- [Claiming](client._internal_namespace.TaskStatus.md#claiming)
-- [Failed](client._internal_namespace.TaskStatus.md#failed)
-- [Idle](client._internal_namespace.TaskStatus.md#idle)
-- [Running](client._internal_namespace.TaskStatus.md#running)
-- [Unrecognized](client._internal_namespace.TaskStatus.md#unrecognized)
-
-## Enumeration members
-
-### Claiming
-
-• **Claiming** = `"claiming"`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:124
-
-___
-
-### Failed
-
-• **Failed** = `"failed"`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:126
-
-___
-
-### Idle
-
-• **Idle** = `"idle"`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:123
-
-___
-
-### Running
-
-• **Running** = `"running"`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:125
-
-___
-
-### Unrecognized
-
-• **Unrecognized** = `"unrecognized"`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:127
diff --git a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.ViewMode.md b/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.ViewMode.md
deleted file mode 100644
index c00d063ffc864..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/enums/client._internal_namespace.ViewMode.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ViewMode
-
-# Enumeration: ViewMode
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ViewMode
-
-## Table of contents
-
-### Enumeration members
-
-- [EDIT](client._internal_namespace.ViewMode.md#edit)
-- [PREVIEW](client._internal_namespace.ViewMode.md#preview)
-- [PRINT](client._internal_namespace.ViewMode.md#print)
-- [VIEW](client._internal_namespace.ViewMode.md#view)
-
-## Enumeration members
-
-### EDIT
-
-• **EDIT** = `"edit"`
-
-#### Defined in
-
-src/plugins/embeddable/target/types/common/types.d.ts:5
-
-___
-
-### PREVIEW
-
-• **PREVIEW** = `"preview"`
-
-#### Defined in
-
-src/plugins/embeddable/target/types/common/types.d.ts:6
-
-___
-
-### PRINT
-
-• **PRINT** = `"print"`
-
-#### Defined in
-
-src/plugins/embeddable/target/types/common/types.d.ts:7
-
-___
-
-### VIEW
-
-• **VIEW** = `"view"`
-
-#### Defined in
-
-src/plugins/embeddable/target/types/common/types.d.ts:8
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.AddArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.AddArgs.md
deleted file mode 100644
index b1a96017c439b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.AddArgs.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / AddArgs
-
-# Interface: AddArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).AddArgs
-
-The arguments needed for creating a new attachment to a case.
-
-## Table of contents
-
-### Properties
-
-- [caseId](attachments_client._internal_namespace.AddArgs.md#caseid)
-- [comment](attachments_client._internal_namespace.AddArgs.md#comment)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-The case ID that this attachment will be associated with
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/add.ts:77](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/add.ts#L77)
-
-___
-
-### comment
-
-• **comment**: { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } \| { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } \| { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) }
-
-The attachment values.
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/add.ts:81](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/add.ts#L81)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.DeleteAllArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.DeleteAllArgs.md
deleted file mode 100644
index d2f34ab040eb3..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.DeleteAllArgs.md
+++ /dev/null
@@ -1,25 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / DeleteAllArgs
-
-# Interface: DeleteAllArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).DeleteAllArgs
-
-Parameters for deleting all comments of a case.
-
-## Table of contents
-
-### Properties
-
-- [caseID](attachments_client._internal_namespace.DeleteAllArgs.md#caseid)
-
-## Properties
-
-### caseID
-
-• **caseID**: `string`
-
-The case ID to delete all attachments for
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/delete.ts:25](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/delete.ts#L25)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.DeleteArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.DeleteArgs.md
deleted file mode 100644
index 0bee9af6c4f24..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.DeleteArgs.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / DeleteArgs
-
-# Interface: DeleteArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).DeleteArgs
-
-Parameters for deleting a single attachment of a case.
-
-## Table of contents
-
-### Properties
-
-- [attachmentID](attachments_client._internal_namespace.DeleteArgs.md#attachmentid)
-- [caseID](attachments_client._internal_namespace.DeleteArgs.md#caseid)
-
-## Properties
-
-### attachmentID
-
-• **attachmentID**: `string`
-
-The attachment ID to delete
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/delete.ts:39](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/delete.ts#L39)
-
-___
-
-### caseID
-
-• **caseID**: `string`
-
-The case ID to delete an attachment from
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/delete.ts:35](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/delete.ts#L35)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.FindArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.FindArgs.md
deleted file mode 100644
index 2fd5a356bc6f5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.FindArgs.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / FindArgs
-
-# Interface: FindArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).FindArgs
-
-Parameters for finding attachments of a case
-
-## Table of contents
-
-### Properties
-
-- [caseID](attachments_client._internal_namespace.FindArgs.md#caseid)
-- [queryParams](attachments_client._internal_namespace.FindArgs.md#queryparams)
-
-## Properties
-
-### caseID
-
-• **caseID**: `string`
-
-The case ID for finding associated attachments
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/get.ts:42](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/get.ts#L42)
-
-___
-
-### queryParams
-
-• `Optional` **queryParams**: `Object`
-
-Optional parameters for filtering the returned attachments
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `defaultSearchOperator` | `undefined` \| ``"AND"`` \| ``"OR"`` |
-| `fields` | `undefined` \| `string`[] |
-| `filter` | `undefined` \| `string` |
-| `hasReference` | `undefined` \| { `id`: `string` = rt.string; `type`: `string` = rt.string } \| { `id`: `string` = rt.string; `type`: `string` = rt.string }[] |
-| `hasReferenceOperator` | `undefined` \| ``"AND"`` \| ``"OR"`` |
-| `page` | `undefined` \| `number` |
-| `perPage` | `undefined` \| `number` |
-| `search` | `undefined` \| `string` |
-| `searchFields` | `undefined` \| `string`[] |
-| `sortField` | `undefined` \| `string` |
-| `sortOrder` | `undefined` \| ``"desc"`` \| ``"asc"`` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/get.ts:46](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/get.ts#L46)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetAllAlertsAttachToCase.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetAllAlertsAttachToCase.md
deleted file mode 100644
index d45019010a3d6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetAllAlertsAttachToCase.md
+++ /dev/null
@@ -1,23 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / GetAllAlertsAttachToCase
-
-# Interface: GetAllAlertsAttachToCase
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).GetAllAlertsAttachToCase
-
-## Table of contents
-
-### Properties
-
-- [caseId](attachments_client._internal_namespace.GetAllAlertsAttachToCase.md#caseid)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-The ID of the case to retrieve the alerts from
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/get.ts:74](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/get.ts#L74)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetAllArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetAllArgs.md
deleted file mode 100644
index f5ebbd40a2d08..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetAllArgs.md
+++ /dev/null
@@ -1,25 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / GetAllArgs
-
-# Interface: GetAllArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).GetAllArgs
-
-Parameters for retrieving all attachments of a case
-
-## Table of contents
-
-### Properties
-
-- [caseID](attachments_client._internal_namespace.GetAllArgs.md#caseid)
-
-## Properties
-
-### caseID
-
-• **caseID**: `string`
-
-The case ID to retrieve all attachments for
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/get.ts:56](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/get.ts#L56)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetArgs.md
deleted file mode 100644
index 8c36ea3ab2f12..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.GetArgs.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / GetArgs
-
-# Interface: GetArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).GetArgs
-
-## Table of contents
-
-### Properties
-
-- [attachmentID](attachments_client._internal_namespace.GetArgs.md#attachmentid)
-- [caseID](attachments_client._internal_namespace.GetArgs.md#caseid)
-
-## Properties
-
-### attachmentID
-
-• **attachmentID**: `string`
-
-The ID of the attachment to retrieve
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/get.ts:67](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/get.ts#L67)
-
-___
-
-### caseID
-
-• **caseID**: `string`
-
-The ID of the case to retrieve an attachment from
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/get.ts:63](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/get.ts#L63)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.UpdateArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.UpdateArgs.md
deleted file mode 100644
index 75650928ba124..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client._internal_namespace.UpdateArgs.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / [\_internal\_namespace](../modules/attachments_client._internal_namespace.md) / UpdateArgs
-
-# Interface: UpdateArgs
-
-[attachments/client](../modules/attachments_client.md).[_internal_namespace](../modules/attachments_client._internal_namespace.md).UpdateArgs
-
-Parameters for updating a single attachment
-
-## Table of contents
-
-### Properties
-
-- [caseID](attachments_client._internal_namespace.UpdateArgs.md#caseid)
-- [updateRequest](attachments_client._internal_namespace.UpdateArgs.md#updaterequest)
-
-## Properties
-
-### caseID
-
-• **caseID**: `string`
-
-The ID of the case that is associated with this attachment
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/update.ts:28](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/update.ts#L28)
-
-___
-
-### updateRequest
-
-• **updateRequest**: { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `id`: `string` = rt.string; `version`: `string` = rt.string }
-
-The full attachment request with the fields updated with appropriate values
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/update.ts:32](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/update.ts#L32)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client.attachmentssubclient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client.attachmentssubclient.md
deleted file mode 100644
index 04b77c2141ed8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/attachments_client.attachmentssubclient.md
+++ /dev/null
@@ -1,198 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](../modules/attachments_client.md) / AttachmentsSubClient
-
-# Interface: AttachmentsSubClient
-
-[attachments/client](../modules/attachments_client.md).AttachmentsSubClient
-
-API for interacting with the attachments to a case.
-
-## Table of contents
-
-### Methods
-
-- [add](attachments_client.AttachmentsSubClient.md#add)
-- [delete](attachments_client.AttachmentsSubClient.md#delete)
-- [deleteAll](attachments_client.AttachmentsSubClient.md#deleteall)
-- [find](attachments_client.AttachmentsSubClient.md#find)
-- [get](attachments_client.AttachmentsSubClient.md#get)
-- [getAll](attachments_client.AttachmentsSubClient.md#getall)
-- [getAllAlertsAttachToCase](attachments_client.AttachmentsSubClient.md#getallalertsattachtocase)
-- [update](attachments_client.AttachmentsSubClient.md#update)
-
-## Methods
-
-### add
-
-▸ **add**(`params`): `Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-Adds an attachment to a case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`AddArgs`](attachments_client._internal_namespace.AddArgs.md) |
-
-#### Returns
-
-`Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:35](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L35)
-
-___
-
-### delete
-
-▸ **delete**(`deleteArgs`): `Promise`<`void`\>
-
-Deletes a single attachment for a specific case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `deleteArgs` | [`DeleteArgs`](attachments_client._internal_namespace.DeleteArgs.md) |
-
-#### Returns
-
-`Promise`<`void`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:43](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L43)
-
-___
-
-### deleteAll
-
-▸ **deleteAll**(`deleteAllArgs`): `Promise`<`void`\>
-
-Deletes all attachments associated with a single case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `deleteAllArgs` | [`DeleteAllArgs`](attachments_client._internal_namespace.DeleteAllArgs.md) |
-
-#### Returns
-
-`Promise`<`void`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:39](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L39)
-
-___
-
-### find
-
-▸ **find**(`findArgs`): `Promise`<[`ICommentsResponse`](typedoc_interfaces.ICommentsResponse.md)\>
-
-Retrieves all comments matching the search criteria.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `findArgs` | [`FindArgs`](attachments_client._internal_namespace.FindArgs.md) |
-
-#### Returns
-
-`Promise`<[`ICommentsResponse`](typedoc_interfaces.ICommentsResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:47](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L47)
-
-___
-
-### get
-
-▸ **get**(`getArgs`): `Promise`<{ `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }\>
-
-Retrieves a single attachment for a case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `getArgs` | [`GetArgs`](attachments_client._internal_namespace.GetArgs.md) |
-
-#### Returns
-
-`Promise`<{ `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:59](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L59)
-
-___
-
-### getAll
-
-▸ **getAll**(`getAllArgs`): `Promise`<[`IAllCommentsResponse`](typedoc_interfaces.IAllCommentsResponse.md)\>
-
-Gets all attachments for a single case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `getAllArgs` | [`GetAllArgs`](attachments_client._internal_namespace.GetAllArgs.md) |
-
-#### Returns
-
-`Promise`<[`IAllCommentsResponse`](typedoc_interfaces.IAllCommentsResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:55](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L55)
-
-___
-
-### getAllAlertsAttachToCase
-
-▸ **getAllAlertsAttachToCase**(`params`): `Promise`<{ `attached_at`: `string` = rt.string; `id`: `string` = rt.string; `index`: `string` = rt.string }[]\>
-
-Retrieves all alerts attach to a case given a single case ID
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`GetAllAlertsAttachToCase`](attachments_client._internal_namespace.GetAllAlertsAttachToCase.md) |
-
-#### Returns
-
-`Promise`<{ `attached_at`: `string` = rt.string; `id`: `string` = rt.string; `index`: `string` = rt.string }[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:51](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L51)
-
-___
-
-### update
-
-▸ **update**(`updateArgs`): `Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-Updates a specific attachment.
-
-The request must include all fields for the attachment. Even the fields that are not changing.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `updateArgs` | [`UpdateArgs`](attachments_client._internal_namespace.UpdateArgs.md) |
-
-#### Returns
-
-`Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/attachments/client.ts:65](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/attachments/client.ts#L65)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_client.casessubclient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/cases_client.casessubclient.md
deleted file mode 100644
index df4d1bdf7966f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_client.casessubclient.md
+++ /dev/null
@@ -1,249 +0,0 @@
-[Cases Client API Interface](../README.md) / [cases/client](../modules/cases_client.md) / CasesSubClient
-
-# Interface: CasesSubClient
-
-[cases/client](../modules/cases_client.md).CasesSubClient
-
-API for interacting with the cases entities.
-
-## Table of contents
-
-### Methods
-
-- [create](cases_client.CasesSubClient.md#create)
-- [delete](cases_client.CasesSubClient.md#delete)
-- [find](cases_client.CasesSubClient.md#find)
-- [get](cases_client.CasesSubClient.md#get)
-- [getCasesByAlertID](cases_client.CasesSubClient.md#getcasesbyalertid)
-- [getReporters](cases_client.CasesSubClient.md#getreporters)
-- [getTags](cases_client.CasesSubClient.md#gettags)
-- [push](cases_client.CasesSubClient.md#push)
-- [resolve](cases_client.CasesSubClient.md#resolve)
-- [update](cases_client.CasesSubClient.md#update)
-
-## Methods
-
-### create
-
-▸ **create**(`data`): `Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-Creates a case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `data` | [`ICasePostRequest`](typedoc_interfaces.ICasePostRequest.md) |
-
-#### Returns
-
-`Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:51](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L51)
-
-___
-
-### delete
-
-▸ **delete**(`ids`): `Promise`<`void`\>
-
-Delete a case and all its comments.
-
-**`params`** ids an array of case IDs to delete
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `ids` | `string`[] |
-
-#### Returns
-
-`Promise`<`void`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:80](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L80)
-
-___
-
-### find
-
-▸ **find**(`params`): `Promise`<[`ICasesFindResponse`](typedoc_interfaces.ICasesFindResponse.md)\>
-
-Returns cases that match the search criteria.
-
-If the `owner` field is left empty then all the cases that the user has access to will be returned.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`ICasesFindRequest`](typedoc_interfaces.ICasesFindRequest.md) |
-
-#### Returns
-
-`Promise`<[`ICasesFindResponse`](typedoc_interfaces.ICasesFindResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:57](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L57)
-
-___
-
-### get
-
-▸ **get**(`params`): `Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-Retrieves a single case with the specified ID.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`GetParams`](cases_get.GetParams.md) |
-
-#### Returns
-
-`Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:61](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L61)
-
-___
-
-### getCasesByAlertID
-
-▸ **getCasesByAlertID**(`params`): `Promise`<{ `id`: `string` = rt.string; `title`: `string` = rt.string }[]\>
-
-Retrieves the cases ID and title that have the requested alert attached to them
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`CasesByAlertIDParams`](cases_get.CasesByAlertIDParams.md) |
-
-#### Returns
-
-`Promise`<{ `id`: `string` = rt.string; `title`: `string` = rt.string }[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:92](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L92)
-
-___
-
-### getReporters
-
-▸ **getReporters**(`params`): `Promise`<{ `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` }[]\>
-
-Retrieves all the reporters across all accessible cases.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Object` |
-| `params.owner` | `undefined` \| `string` \| `string`[] |
-
-#### Returns
-
-`Promise`<{ `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` }[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:88](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L88)
-
-___
-
-### getTags
-
-▸ **getTags**(`params`): `Promise`<`string`[]\>
-
-Retrieves all the tags across all cases the user making the request has access to.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Object` |
-| `params.owner` | `undefined` \| `string` \| `string`[] |
-
-#### Returns
-
-`Promise`<`string`[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:84](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L84)
-
-___
-
-### push
-
-▸ **push**(`args`): `Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-Pushes a specific case to an external system.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `args` | [`PushParams`](cases_push.PushParams.md) |
-
-#### Returns
-
-`Promise`<[`ICaseResponse`](typedoc_interfaces.ICaseResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:70](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L70)
-
-___
-
-### resolve
-
-▸ **resolve**(`params`): `Promise`<[`ICaseResolveResponse`](typedoc_interfaces.ICaseResolveResponse.md)\>
-
-**`experimental`**
-Retrieves a single case resolving the specified ID.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`GetParams`](cases_get.GetParams.md) |
-
-#### Returns
-
-`Promise`<[`ICaseResolveResponse`](typedoc_interfaces.ICaseResolveResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:66](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L66)
-
-___
-
-### update
-
-▸ **update**(`cases`): `Promise`<[`ICasesResponse`](typedoc_interfaces.ICasesResponse.md)\>
-
-Update the specified cases with the passed in values.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `cases` | [`ICasesPatchRequest`](typedoc_interfaces.ICasesPatchRequest.md) |
-
-#### Returns
-
-`Promise`<[`ICasesResponse`](typedoc_interfaces.ICasesResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/client.ts:74](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/client.ts#L74)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_get.casesbyalertidparams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/cases_get.casesbyalertidparams.md
deleted file mode 100644
index 2e0cf957be8e3..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_get.casesbyalertidparams.md
+++ /dev/null
@@ -1,44 +0,0 @@
-[Cases Client API Interface](../README.md) / [cases/get](../modules/cases_get.md) / CasesByAlertIDParams
-
-# Interface: CasesByAlertIDParams
-
-[cases/get](../modules/cases_get.md).CasesByAlertIDParams
-
-Parameters for finding cases IDs using an alert ID
-
-## Table of contents
-
-### Properties
-
-- [alertID](cases_get.CasesByAlertIDParams.md#alertid)
-- [options](cases_get.CasesByAlertIDParams.md#options)
-
-## Properties
-
-### alertID
-
-• **alertID**: `string`
-
-The alert ID to search for
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:45](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L45)
-
-___
-
-### options
-
-• **options**: `Object`
-
-The filtering options when searching for associated cases.
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `owner` | `undefined` \| `string` \| `string`[] |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:49](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L49)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_get.getparams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/cases_get.getparams.md
deleted file mode 100644
index ccd09fd4db48c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_get.getparams.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [cases/get](../modules/cases_get.md) / GetParams
-
-# Interface: GetParams
-
-[cases/get](../modules/cases_get.md).GetParams
-
-The parameters for retrieving a case
-
-## Table of contents
-
-### Properties
-
-- [id](cases_get.GetParams.md#id)
-- [includeComments](cases_get.GetParams.md#includecomments)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-Case ID
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:144](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L144)
-
-___
-
-### includeComments
-
-• `Optional` **includeComments**: `boolean`
-
-Whether to include the attachments for a case in the response
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:148](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L148)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_push.pushparams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/cases_push.pushparams.md
deleted file mode 100644
index 436850a7b64fd..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/cases_push.pushparams.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [cases/push](../modules/cases_push.md) / PushParams
-
-# Interface: PushParams
-
-[cases/push](../modules/cases_push.md).PushParams
-
-Parameters for pushing a case to an external system
-
-## Table of contents
-
-### Properties
-
-- [caseId](cases_push.PushParams.md#caseid)
-- [connectorId](cases_push.PushParams.md#connectorid)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-The ID of a case
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/push.ts:48](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/push.ts#L48)
-
-___
-
-### connectorId
-
-• **connectorId**: `string`
-
-The ID of an external system to push to
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/push.ts:52](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/push.ts#L52)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Action.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Action.md
deleted file mode 100644
index 7f8e04653acf6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Action.md
+++ /dev/null
@@ -1,72 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Action
-
-# Interface: Action
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Action
-
-## Hierarchy
-
-- [`ActionUpdate`](client._internal_namespace.ActionUpdate.md)
-
- ↳ **`Action`**
-
-## Table of contents
-
-### Properties
-
-- [actionTypeId](client._internal_namespace.Action.md#actiontypeid)
-- [config](client._internal_namespace.Action.md#config)
-- [name](client._internal_namespace.Action.md#name)
-- [secrets](client._internal_namespace.Action.md#secrets)
-
-## Properties
-
-### actionTypeId
-
-• **actionTypeId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:19
-
-___
-
-### config
-
-• **config**: [`SavedObjectAttributes`](client._internal_namespace.SavedObjectAttributes.md)
-
-#### Inherited from
-
-[ActionUpdate](client._internal_namespace.ActionUpdate.md).[config](client._internal_namespace.ActionUpdate.md#config)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:15
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Inherited from
-
-[ActionUpdate](client._internal_namespace.ActionUpdate.md).[name](client._internal_namespace.ActionUpdate.md#name)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:14
-
-___
-
-### secrets
-
-• **secrets**: [`SavedObjectAttributes`](client._internal_namespace.SavedObjectAttributes.md)
-
-#### Inherited from
-
-[ActionUpdate](client._internal_namespace.ActionUpdate.md).[secrets](client._internal_namespace.ActionUpdate.md#secrets)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:16
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionExecutionSource.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionExecutionSource.md
deleted file mode 100644
index 1b7033f5805c8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionExecutionSource.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionExecutionSource
-
-# Interface: ActionExecutionSource
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionExecutionSource
-
-## Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-## Table of contents
-
-### Properties
-
-- [source](client._internal_namespace.ActionExecutionSource.md#source)
-- [type](client._internal_namespace.ActionExecutionSource.md#type)
-
-## Properties
-
-### source
-
-• **source**: `T`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_execution_source.d.ts:8
-
-___
-
-### type
-
-• **type**: [`ActionExecutionSourceType`](../enums/client._internal_namespace.ActionExecutionSourceType.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_execution_source.d.ts:7
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionExecutorContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionExecutorContext.md
deleted file mode 100644
index 093b2933ddfac..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionExecutorContext.md
+++ /dev/null
@@ -1,112 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionExecutorContext
-
-# Interface: ActionExecutorContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionExecutorContext
-
-## Table of contents
-
-### Properties
-
-- [actionTypeRegistry](client._internal_namespace.ActionExecutorContext.md#actiontyperegistry)
-- [encryptedSavedObjectsClient](client._internal_namespace.ActionExecutorContext.md#encryptedsavedobjectsclient)
-- [eventLogger](client._internal_namespace.ActionExecutorContext.md#eventlogger)
-- [getServices](client._internal_namespace.ActionExecutorContext.md#getservices)
-- [logger](client._internal_namespace.ActionExecutorContext.md#logger)
-- [preconfiguredActions](client._internal_namespace.ActionExecutorContext.md#preconfiguredactions)
-- [spaces](client._internal_namespace.ActionExecutorContext.md#spaces)
-
-### Methods
-
-- [getActionsClientWithRequest](client._internal_namespace.ActionExecutorContext.md#getactionsclientwithrequest)
-
-## Properties
-
-### actionTypeRegistry
-
-• **actionTypeRegistry**: [`ActionTypeRegistryContract`](../modules/client._internal_namespace.md#actiontyperegistrycontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:16
-
-___
-
-### encryptedSavedObjectsClient
-
-• **encryptedSavedObjectsClient**: [`EncryptedSavedObjectsClient`](client._internal_namespace.EncryptedSavedObjectsClient.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:15
-
-___
-
-### eventLogger
-
-• **eventLogger**: [`IEventLogger`](client._internal_namespace.IEventLogger.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:17
-
-___
-
-### getServices
-
-• **getServices**: [`GetServicesFunction`](../modules/client._internal_namespace.md#getservicesfunction)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:13
-
-___
-
-### logger
-
-• **logger**: `Logger`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:11
-
-___
-
-### preconfiguredActions
-
-• **preconfiguredActions**: [`PreConfiguredAction`](client._internal_namespace.PreConfiguredAction.md)<[`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig), [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets)\>[]
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:18
-
-___
-
-### spaces
-
-• `Optional` **spaces**: [`SpacesServiceStart`](client._internal_namespace.SpacesServiceStart.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:12
-
-## Methods
-
-### getActionsClientWithRequest
-
-▸ **getActionsClientWithRequest**(`request`, `authorizationContext?`): `Promise`<`PublicMethodsOf`<[`ActionsClient`](../classes/client._internal_namespace.ActionsClient.md)\>\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> |
-| `authorizationContext?` | [`ActionExecutionSource`](client._internal_namespace.ActionExecutionSource.md)<`unknown`\> |
-
-#### Returns
-
-`Promise`<`PublicMethodsOf`<[`ActionsClient`](../classes/client._internal_namespace.ActionsClient.md)\>\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:14
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionResult.md
deleted file mode 100644
index 7a303e0216b3a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionResult.md
+++ /dev/null
@@ -1,90 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionResult
-
-# Interface: ActionResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionResult
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Config` | extends [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig) = [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig) |
-
-## Hierarchy
-
-- **`ActionResult`**
-
- ↳ [`FindActionResult`](client._internal_namespace.FindActionResult.md)
-
- ↳ [`PreConfiguredAction`](client._internal_namespace.PreConfiguredAction.md)
-
-## Table of contents
-
-### Properties
-
-- [actionTypeId](client._internal_namespace.ActionResult.md#actiontypeid)
-- [config](client._internal_namespace.ActionResult.md#config)
-- [id](client._internal_namespace.ActionResult.md#id)
-- [isMissingSecrets](client._internal_namespace.ActionResult.md#ismissingsecrets)
-- [isPreconfigured](client._internal_namespace.ActionResult.md#ispreconfigured)
-- [name](client._internal_namespace.ActionResult.md#name)
-
-## Properties
-
-### actionTypeId
-
-• **actionTypeId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:50
-
-___
-
-### config
-
-• `Optional` **config**: `Config`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:53
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:49
-
-___
-
-### isMissingSecrets
-
-• `Optional` **isMissingSecrets**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:52
-
-___
-
-### isPreconfigured
-
-• **isPreconfigured**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:54
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:51
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionType-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionType-1.md
deleted file mode 100644
index ac0b15f74c84d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionType-1.md
+++ /dev/null
@@ -1,120 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionType
-
-# Interface: ActionType
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionType
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Config` | extends [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig) = [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig) |
-| `Secrets` | extends [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets) = [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets) |
-| `Params` | extends [`ActionTypeParams`](../modules/client._internal_namespace.md#actiontypeparams) = [`ActionTypeParams`](../modules/client._internal_namespace.md#actiontypeparams) |
-| `ExecutorResultData` | `void` |
-
-## Table of contents
-
-### Properties
-
-- [executor](client._internal_namespace.ActionType-1.md#executor)
-- [id](client._internal_namespace.ActionType-1.md#id)
-- [maxAttempts](client._internal_namespace.ActionType-1.md#maxattempts)
-- [minimumLicenseRequired](client._internal_namespace.ActionType-1.md#minimumlicenserequired)
-- [name](client._internal_namespace.ActionType-1.md#name)
-- [validate](client._internal_namespace.ActionType-1.md#validate)
-
-### Methods
-
-- [renderParameterTemplates](client._internal_namespace.ActionType-1.md#renderparametertemplates)
-
-## Properties
-
-### executor
-
-• **executor**: [`ExecutorType`](../modules/client._internal_namespace.md#executortype)<`Config`, `Secrets`, `Params`, `ExecutorResultData`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:82
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:71
-
-___
-
-### maxAttempts
-
-• `Optional` **maxAttempts**: `number`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:73
-
-___
-
-### minimumLicenseRequired
-
-• **minimumLicenseRequired**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:74
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:72
-
-___
-
-### validate
-
-• `Optional` **validate**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `config?` | [`ValidatorType`](client._internal_namespace.ValidatorType.md)<`Config`\> |
-| `params?` | [`ValidatorType`](client._internal_namespace.ValidatorType.md)<`Params`\> |
-| `secrets?` | [`ValidatorType`](client._internal_namespace.ValidatorType.md)<`Secrets`\> |
-| `connector?` | (`config`: `Config`, `secrets`: `Secrets`) => ``null`` \| `string` |
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:75
-
-## Methods
-
-### renderParameterTemplates
-
-▸ `Optional` **renderParameterTemplates**(`params`, `variables`, `actionId?`): `Params`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Params` |
-| `variables` | `Record`<`string`, `unknown`\> |
-| `actionId?` | `string` |
-
-#### Returns
-
-`Params`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:81
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionType.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionType.md
deleted file mode 100644
index 286e699d5c2f7..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionType.md
+++ /dev/null
@@ -1,76 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionType
-
-# Interface: ActionType
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionType
-
-## Table of contents
-
-### Properties
-
-- [enabled](client._internal_namespace.ActionType.md#enabled)
-- [enabledInConfig](client._internal_namespace.ActionType.md#enabledinconfig)
-- [enabledInLicense](client._internal_namespace.ActionType.md#enabledinlicense)
-- [id](client._internal_namespace.ActionType.md#id)
-- [minimumLicenseRequired](client._internal_namespace.ActionType.md#minimumlicenserequired)
-- [name](client._internal_namespace.ActionType.md#name)
-
-## Properties
-
-### enabled
-
-• **enabled**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:5
-
-___
-
-### enabledInConfig
-
-• **enabledInConfig**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:6
-
-___
-
-### enabledInLicense
-
-• **enabledInLicense**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:7
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:3
-
-___
-
-### minimumLicenseRequired
-
-• **minimumLicenseRequired**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:8
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeExecutorOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeExecutorOptions.md
deleted file mode 100644
index 9c06e78c9c199..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeExecutorOptions.md
+++ /dev/null
@@ -1,95 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionTypeExecutorOptions
-
-# Interface: ActionTypeExecutorOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionTypeExecutorOptions
-
-## Type parameters
-
-| Name |
-| :------ |
-| `Config` |
-| `Secrets` |
-| `Params` |
-
-## Table of contents
-
-### Properties
-
-- [actionId](client._internal_namespace.ActionTypeExecutorOptions.md#actionid)
-- [config](client._internal_namespace.ActionTypeExecutorOptions.md#config)
-- [isEphemeral](client._internal_namespace.ActionTypeExecutorOptions.md#isephemeral)
-- [params](client._internal_namespace.ActionTypeExecutorOptions.md#params)
-- [secrets](client._internal_namespace.ActionTypeExecutorOptions.md#secrets)
-- [services](client._internal_namespace.ActionTypeExecutorOptions.md#services)
-- [taskInfo](client._internal_namespace.ActionTypeExecutorOptions.md#taskinfo)
-
-## Properties
-
-### actionId
-
-• **actionId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:40
-
-___
-
-### config
-
-• **config**: `Config`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:42
-
-___
-
-### isEphemeral
-
-• `Optional` **isEphemeral**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:45
-
-___
-
-### params
-
-• **params**: `Params`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:44
-
-___
-
-### secrets
-
-• **secrets**: `Secrets`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:43
-
-___
-
-### services
-
-• **services**: [`Services`](client._internal_namespace.Services.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:41
-
-___
-
-### taskInfo
-
-• `Optional` **taskInfo**: [`TaskInfo`](client._internal_namespace.TaskInfo.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:46
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeExecutorResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeExecutorResult.md
deleted file mode 100644
index 039de06431a7c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeExecutorResult.md
+++ /dev/null
@@ -1,82 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionTypeExecutorResult
-
-# Interface: ActionTypeExecutorResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionTypeExecutorResult
-
-## Type parameters
-
-| Name |
-| :------ |
-| `Data` |
-
-## Table of contents
-
-### Properties
-
-- [actionId](client._internal_namespace.ActionTypeExecutorResult.md#actionid)
-- [data](client._internal_namespace.ActionTypeExecutorResult.md#data)
-- [message](client._internal_namespace.ActionTypeExecutorResult.md#message)
-- [retry](client._internal_namespace.ActionTypeExecutorResult.md#retry)
-- [serviceMessage](client._internal_namespace.ActionTypeExecutorResult.md#servicemessage)
-- [status](client._internal_namespace.ActionTypeExecutorResult.md#status)
-
-## Properties
-
-### actionId
-
-• **actionId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:20
-
-___
-
-### data
-
-• `Optional` **data**: `Data`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:24
-
-___
-
-### message
-
-• `Optional` **message**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:22
-
-___
-
-### retry
-
-• `Optional` **retry**: ``null`` \| `boolean` \| `Date`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:25
-
-___
-
-### serviceMessage
-
-• `Optional` **serviceMessage**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:23
-
-___
-
-### status
-
-• **status**: ``"error"`` \| ``"ok"``
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/common/types.d.ts:21
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeRegistryOpts.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeRegistryOpts.md
deleted file mode 100644
index 2f83edd5720f0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionTypeRegistryOpts.md
+++ /dev/null
@@ -1,76 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionTypeRegistryOpts
-
-# Interface: ActionTypeRegistryOpts
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionTypeRegistryOpts
-
-## Table of contents
-
-### Properties
-
-- [actionsConfigUtils](client._internal_namespace.ActionTypeRegistryOpts.md#actionsconfigutils)
-- [licenseState](client._internal_namespace.ActionTypeRegistryOpts.md#licensestate)
-- [licensing](client._internal_namespace.ActionTypeRegistryOpts.md#licensing)
-- [preconfiguredActions](client._internal_namespace.ActionTypeRegistryOpts.md#preconfiguredactions)
-- [taskManager](client._internal_namespace.ActionTypeRegistryOpts.md#taskmanager)
-- [taskRunnerFactory](client._internal_namespace.ActionTypeRegistryOpts.md#taskrunnerfactory)
-
-## Properties
-
-### actionsConfigUtils
-
-• **actionsConfigUtils**: [`ActionsConfigurationUtilities`](client._internal_namespace.ActionsConfigurationUtilities.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/action_type_registry.d.ts:11
-
-___
-
-### licenseState
-
-• **licenseState**: [`ILicenseState`](../modules/client._internal_namespace.md#ilicensestate)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/action_type_registry.d.ts:12
-
-___
-
-### licensing
-
-• **licensing**: [`LicensingPluginSetup`](client._internal_namespace.LicensingPluginSetup.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/action_type_registry.d.ts:8
-
-___
-
-### preconfiguredActions
-
-• **preconfiguredActions**: [`PreConfiguredAction`](client._internal_namespace.PreConfiguredAction.md)<[`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig), [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets)\>[]
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/action_type_registry.d.ts:13
-
-___
-
-### taskManager
-
-• **taskManager**: [`TaskManagerSetupContract`](client._internal_namespace.TaskManagerSetupContract.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/action_type_registry.d.ts:9
-
-___
-
-### taskRunnerFactory
-
-• **taskRunnerFactory**: [`TaskRunnerFactory`](../classes/client._internal_namespace.TaskRunnerFactory.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/action_type_registry.d.ts:10
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionUpdate.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionUpdate.md
deleted file mode 100644
index 1326f4f3b3361..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionUpdate.md
+++ /dev/null
@@ -1,51 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionUpdate
-
-# Interface: ActionUpdate
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionUpdate
-
-## Hierarchy
-
-- [`SavedObjectAttributes`](client._internal_namespace.SavedObjectAttributes.md)
-
- ↳ **`ActionUpdate`**
-
- ↳↳ [`Action`](client._internal_namespace.Action.md)
-
-## Table of contents
-
-### Properties
-
-- [config](client._internal_namespace.ActionUpdate.md#config)
-- [name](client._internal_namespace.ActionUpdate.md#name)
-- [secrets](client._internal_namespace.ActionUpdate.md#secrets)
-
-## Properties
-
-### config
-
-• **config**: [`SavedObjectAttributes`](client._internal_namespace.SavedObjectAttributes.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:15
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:14
-
-___
-
-### secrets
-
-• **secrets**: [`SavedObjectAttributes`](client._internal_namespace.SavedObjectAttributes.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:16
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionsConfigurationUtilities.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionsConfigurationUtilities.md
deleted file mode 100644
index f2562a697f255..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionsConfigurationUtilities.md
+++ /dev/null
@@ -1,217 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionsConfigurationUtilities
-
-# Interface: ActionsConfigurationUtilities
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionsConfigurationUtilities
-
-## Table of contents
-
-### Methods
-
-- [ensureActionTypeEnabled](client._internal_namespace.ActionsConfigurationUtilities.md#ensureactiontypeenabled)
-- [ensureHostnameAllowed](client._internal_namespace.ActionsConfigurationUtilities.md#ensurehostnameallowed)
-- [ensureUriAllowed](client._internal_namespace.ActionsConfigurationUtilities.md#ensureuriallowed)
-- [getCustomHostSettings](client._internal_namespace.ActionsConfigurationUtilities.md#getcustomhostsettings)
-- [getMicrosoftGraphApiUrl](client._internal_namespace.ActionsConfigurationUtilities.md#getmicrosoftgraphapiurl)
-- [getProxySettings](client._internal_namespace.ActionsConfigurationUtilities.md#getproxysettings)
-- [getResponseSettings](client._internal_namespace.ActionsConfigurationUtilities.md#getresponsesettings)
-- [getSSLSettings](client._internal_namespace.ActionsConfigurationUtilities.md#getsslsettings)
-- [isActionTypeEnabled](client._internal_namespace.ActionsConfigurationUtilities.md#isactiontypeenabled)
-- [isHostnameAllowed](client._internal_namespace.ActionsConfigurationUtilities.md#ishostnameallowed)
-- [isUriAllowed](client._internal_namespace.ActionsConfigurationUtilities.md#isuriallowed)
-
-## Methods
-
-### ensureActionTypeEnabled
-
-▸ **ensureActionTypeEnabled**(`actionType`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `actionType` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:10
-
-___
-
-### ensureHostnameAllowed
-
-▸ **ensureHostnameAllowed**(`hostname`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `hostname` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:8
-
-___
-
-### ensureUriAllowed
-
-▸ **ensureUriAllowed**(`uri`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `uri` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:9
-
-___
-
-### getCustomHostSettings
-
-▸ **getCustomHostSettings**(`targetUrl`): `undefined` \| `Readonly`<{ `smtp?`: `Readonly`<{ `ignoreTLS?`: `boolean` ; `requireTLS?`: `boolean` }\> ; `ssl?`: `Readonly`<{ `certificateAuthoritiesData?`: `string` ; `certificateAuthoritiesFiles?`: `string` \| `string`[] ; `rejectUnauthorized?`: `boolean` ; `verificationMode?`: ``"none"`` \| ``"certificate"`` \| ``"full"`` }\> } & { `url`: `string` }\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `targetUrl` | `string` |
-
-#### Returns
-
-`undefined` \| `Readonly`<{ `smtp?`: `Readonly`<{ `ignoreTLS?`: `boolean` ; `requireTLS?`: `boolean` }\> ; `ssl?`: `Readonly`<{ `certificateAuthoritiesData?`: `string` ; `certificateAuthoritiesFiles?`: `string` \| `string`[] ; `rejectUnauthorized?`: `boolean` ; `verificationMode?`: ``"none"`` \| ``"certificate"`` \| ``"full"`` }\> } & { `url`: `string` }\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:14
-
-___
-
-### getMicrosoftGraphApiUrl
-
-▸ **getMicrosoftGraphApiUrl**(): `undefined` \| `string`
-
-#### Returns
-
-`undefined` \| `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:15
-
-___
-
-### getProxySettings
-
-▸ **getProxySettings**(): `undefined` \| [`ProxySettings`](client._internal_namespace.ProxySettings.md)
-
-#### Returns
-
-`undefined` \| [`ProxySettings`](client._internal_namespace.ProxySettings.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:12
-
-___
-
-### getResponseSettings
-
-▸ **getResponseSettings**(): [`ResponseSettings`](client._internal_namespace.ResponseSettings.md)
-
-#### Returns
-
-[`ResponseSettings`](client._internal_namespace.ResponseSettings.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:13
-
-___
-
-### getSSLSettings
-
-▸ **getSSLSettings**(): [`SSLSettings`](client._internal_namespace.SSLSettings.md)
-
-#### Returns
-
-[`SSLSettings`](client._internal_namespace.SSLSettings.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:11
-
-___
-
-### isActionTypeEnabled
-
-▸ **isActionTypeEnabled**(`actionType`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `actionType` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:7
-
-___
-
-### isHostnameAllowed
-
-▸ **isHostnameAllowed**(`hostname`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `hostname` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:5
-
-___
-
-### isUriAllowed
-
-▸ **isUriAllowed**(`uri`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `uri` | `string` |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_config.d.ts:6
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionsLicenseInformation.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionsLicenseInformation.md
deleted file mode 100644
index c7ab568b57c35..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ActionsLicenseInformation.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ActionsLicenseInformation
-
-# Interface: ActionsLicenseInformation
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ActionsLicenseInformation
-
-## Table of contents
-
-### Properties
-
-- [enableAppLink](client._internal_namespace.ActionsLicenseInformation.md#enableapplink)
-- [message](client._internal_namespace.ActionsLicenseInformation.md#message)
-- [showAppLink](client._internal_namespace.ActionsLicenseInformation.md#showapplink)
-
-## Properties
-
-### enableAppLink
-
-• **enableAppLink**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:9
-
-___
-
-### message
-
-• **message**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:10
-
-___
-
-### showAppLink
-
-• **showAppLink**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:8
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AggregationBuilder.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AggregationBuilder.md
deleted file mode 100644
index 9790711e77193..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AggregationBuilder.md
+++ /dev/null
@@ -1,68 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AggregationBuilder
-
-# Interface: AggregationBuilder
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AggregationBuilder
-
-## Table of contents
-
-### Methods
-
-- [build](client._internal_namespace.AggregationBuilder.md#build)
-- [formatResponse](client._internal_namespace.AggregationBuilder.md#formatresponse)
-- [getName](client._internal_namespace.AggregationBuilder.md#getname)
-
-## Methods
-
-### build
-
-▸ **build**(): `Record`<`string`, `AggregationsAggregationContainer`\>
-
-#### Returns
-
-`Record`<`string`, `AggregationsAggregationContainer`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/types.ts:20](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/types.ts#L20)
-
-___
-
-### formatResponse
-
-▸ **formatResponse**(`aggregations`): `Object`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `aggregations` | [`AggregationResponse`](../modules/client._internal_namespace.md#aggregationresponse) |
-
-#### Returns
-
-`Object`
-
-| Name | Type |
-| :------ | :------ |
-| `actions` | `undefined` \| { isolateHost?: { isolate: { total: number; }; unisolate: { total: number; }; } \| undefined; } |
-| `alerts` | `undefined` \| { count?: number \| undefined; hosts?: { total: number; values: { name: string \| undefined; id: string; count: number; }[]; } \| undefined; users?: { total: number; values: { name: string; count: number; }[]; } \| undefined; } |
-| `connectors` | `undefined` \| { `total`: `number` = rt.number } |
-| `lifespan` | `undefined` \| { `closeDate`: ``null`` \| `string` ; `creationDate`: `string` = rt.string; `statusInfo`: { openDuration: number; inProgressDuration: number; reopenDates: string[]; } = StatusInfoRt } |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/types.ts:21](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/types.ts#L21)
-
-___
-
-### getName
-
-▸ **getName**(): `string`
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/types.ts:22](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/types.ts#L22)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Alert.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Alert.md
deleted file mode 100644
index 71ae71dd5cfaf..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Alert.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Alert
-
-# Interface: Alert
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Alert
-
-## Table of contents
-
-### Properties
-
-- [\_id](client._internal_namespace.Alert.md#_id)
-- [\_index](client._internal_namespace.Alert.md#_index)
-- [\_source](client._internal_namespace.Alert.md#_source)
-
-## Properties
-
-### \_id
-
-• **\_id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:233](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L233)
-
-___
-
-### \_index
-
-• **\_index**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:234](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L234)
-
-___
-
-### \_source
-
-• **\_source**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:235](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L235)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertIdIndex.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertIdIndex.md
deleted file mode 100644
index b9a09536ed21c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertIdIndex.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AlertIdIndex
-
-# Interface: AlertIdIndex
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AlertIdIndex
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.AlertIdIndex.md#id)
-- [index](client._internal_namespace.AlertIdIndex.md#index)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:243](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L243)
-
-___
-
-### index
-
-• **index**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:244](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L244)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertInfo.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertInfo.md
deleted file mode 100644
index acf8e3b09b74f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertInfo.md
+++ /dev/null
@@ -1,34 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AlertInfo
-
-# Interface: AlertInfo
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AlertInfo
-
-This structure holds the alert ID and index from an alert comment
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.AlertInfo.md#id)
-- [index](client._internal_namespace.AlertInfo.md#index)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/common/types.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/common/types.ts#L15)
-
-___
-
-### index
-
-• **index**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/common/types.ts:16](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/common/types.ts#L16)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertsResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertsResponse.md
deleted file mode 100644
index aae855d5d0d4a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AlertsResponse.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AlertsResponse
-
-# Interface: AlertsResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AlertsResponse
-
-## Table of contents
-
-### Properties
-
-- [docs](client._internal_namespace.AlertsResponse.md#docs)
-
-## Properties
-
-### docs
-
-• **docs**: [`Alert`](client._internal_namespace.Alert.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:239](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L239)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AppCategory.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AppCategory.md
deleted file mode 100644
index 7ab9c4c95ff66..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AppCategory.md
+++ /dev/null
@@ -1,83 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AppCategory
-
-# Interface: AppCategory
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AppCategory
-
-A category definition for nav links to know where to sort them in the left hand nav
-
-## Table of contents
-
-### Properties
-
-- [ariaLabel](client._internal_namespace.AppCategory.md#arialabel)
-- [euiIconType](client._internal_namespace.AppCategory.md#euiicontype)
-- [id](client._internal_namespace.AppCategory.md#id)
-- [label](client._internal_namespace.AppCategory.md#label)
-- [order](client._internal_namespace.AppCategory.md#order)
-
-## Properties
-
-### ariaLabel
-
-• `Optional` **ariaLabel**: `string`
-
-If the visual label isn't appropriate for screen readers,
-can override it here
-
-#### Defined in
-
-src/core/target/types/types/app_category.d.ts:20
-
-___
-
-### euiIconType
-
-• `Optional` **euiIconType**: `string`
-
-Define an icon to be used for the category
-If the category is only 1 item, and no icon is defined, will default to the product icon
-Defaults to initials if no icon is defined
-
-#### Defined in
-
-src/core/target/types/types/app_category.d.ts:32
-
-___
-
-### id
-
-• **id**: `string`
-
-Unique identifier for the categories
-
-#### Defined in
-
-src/core/target/types/types/app_category.d.ts:10
-
-___
-
-### label
-
-• **label**: `string`
-
-Label used for category name.
-Also used as aria-label if one isn't set.
-
-#### Defined in
-
-src/core/target/types/types/app_category.d.ts:15
-
-___
-
-### order
-
-• `Optional` **order**: `number`
-
-The order that categories will be sorted in
-Prefer large steps between categories to allow for further editing
-(Default categories are in steps of 1000)
-
-#### Defined in
-
-src/core/target/types/types/app_category.d.ts:26
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AttachedToCaseArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AttachedToCaseArgs.md
deleted file mode 100644
index 86ea1605c1374..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AttachedToCaseArgs.md
+++ /dev/null
@@ -1,55 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AttachedToCaseArgs
-
-# Interface: AttachedToCaseArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AttachedToCaseArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`AttachedToCaseArgs`**
-
- ↳↳ [`CountActionsAttachedToCaseArgs`](client._internal_namespace.CountActionsAttachedToCaseArgs.md)
-
-## Table of contents
-
-### Properties
-
-- [caseId](client._internal_namespace.AttachedToCaseArgs.md#caseid)
-- [filter](client._internal_namespace.AttachedToCaseArgs.md#filter)
-- [unsecuredSavedObjectsClient](client._internal_namespace.AttachedToCaseArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:33](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L33)
-
-___
-
-### filter
-
-• `Optional` **filter**: `KueryNode`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:34](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L34)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Attributes.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Attributes.md
deleted file mode 100644
index fd8a32f7afb6b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Attributes.md
+++ /dev/null
@@ -1,84 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Attributes
-
-# Interface: Attributes
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Attributes
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.Attributes.md#action)
-- [created\_at](client._internal_namespace.Attributes.md#created_at)
-- [created\_by](client._internal_namespace.Attributes.md#created_by)
-- [owner](client._internal_namespace.Attributes.md#owner)
-- [payload](client._internal_namespace.Attributes.md#payload)
-- [type](client._internal_namespace.Attributes.md#type)
-
-## Properties
-
-### action
-
-• **action**: ``"add"`` \| ``"create"`` \| ``"delete"`` \| ``"update"`` \| ``"push_to_service"``
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:84](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L84)
-
-___
-
-### created\_at
-
-• **created\_at**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:85](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L85)
-
-___
-
-### created\_by
-
-• **created\_by**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:86](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L86)
-
-___
-
-### owner
-
-• **owner**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:87](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L87)
-
-___
-
-### payload
-
-• **payload**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:89](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L89)
-
-___
-
-### type
-
-• **type**: ``"description"`` \| ``"tags"`` \| ``"title"`` \| ``"connector"`` \| ``"settings"`` \| ``"status"`` \| ``"comment"`` \| ``"pushed"`` \| ``"create_case"`` \| ``"delete_case"``
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:88](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L88)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuditEvent.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuditEvent.md
deleted file mode 100644
index d0bbaabfc416b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuditEvent.md
+++ /dev/null
@@ -1,59 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuditEvent
-
-# Interface: AuditEvent
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuditEvent
-
-Audit event schema using ECS format: https://www.elastic.co/guide/en/ecs/1.12/index.html
-
-If you add additional fields to the schema ensure you update the Kibana Filebeat module:
-https://github.com/elastic/beats/tree/master/filebeat/module/kibana
-
-## Hierarchy
-
-- `LogMeta`
-
- ↳ **`AuditEvent`**
-
-## Table of contents
-
-### Properties
-
-- [kibana](client._internal_namespace.AuditEvent.md#kibana)
-- [message](client._internal_namespace.AuditEvent.md#message)
-
-## Properties
-
-### kibana
-
-• `Optional` **kibana**: `Object`
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `add_to_spaces?` | readonly `string`[] | Set of space IDs that a saved object was shared to. |
-| `authentication_provider?` | `string` | Name of authentication provider associated with a login event. |
-| `authentication_realm?` | `string` | Name of Elasticsearch realm that has authenticated the user. |
-| `authentication_type?` | `string` | Type of authentication provider associated with a login event. |
-| `delete_from_spaces?` | readonly `string`[] | Set of space IDs that a saved object was removed from. |
-| `lookup_realm?` | `string` | Name of Elasticsearch realm where the user details were retrieved from. |
-| `saved_object?` | `Object` | Saved object that was created, changed, deleted or accessed as part of this event. |
-| `saved_object.id` | `string` | - |
-| `saved_object.type` | `string` | - |
-| `session_id?` | `string` | The ID of the user session associated with this event. Each login attempt results in a unique session id. |
-| `space_id?` | `string` | The ID of the space associated with this event. |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/audit/audit_events.d.ts:14
-
-___
-
-### message
-
-• **message**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/audit/audit_events.d.ts:13
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuditLogger.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuditLogger.md
deleted file mode 100644
index c4caafd67c08d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuditLogger.md
+++ /dev/null
@@ -1,52 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuditLogger
-
-# Interface: AuditLogger
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuditLogger
-
-## Table of contents
-
-### Methods
-
-- [log](client._internal_namespace.AuditLogger.md#log)
-
-## Methods
-
-### log
-
-▸ **log**(`event`): `void`
-
-Logs an [AuditEvent](client._internal_namespace.AuditEvent.md) and automatically adds meta data about the
-current user, space and correlation id.
-
-Guidelines around what events should be logged and how they should be
-structured can be found in: `/x-pack/plugins/security/README.md`
-
-**`example`**
-```typescript
-const auditLogger = securitySetup.audit.asScoped(request);
-auditLogger.log({
- message: 'User is updating dashboard [id=123]',
- event: {
- action: 'saved_object_update',
- outcome: 'unknown'
- },
- kibana: {
- saved_object: { type: 'dashboard', id: '123' }
- },
-});
-```
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `event` | `undefined` \| [`AuditEvent`](client._internal_namespace.AuditEvent.md) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/audit/audit_service.d.ts:32
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthFilterHelpers.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthFilterHelpers.md
deleted file mode 100644
index c4117202317cc..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthFilterHelpers.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuthFilterHelpers
-
-# Interface: AuthFilterHelpers
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuthFilterHelpers
-
-Defines the helper methods and necessary information for authorizing the find API's request.
-
-## Table of contents
-
-### Properties
-
-- [ensureSavedObjectsAreAuthorized](client._internal_namespace.AuthFilterHelpers.md#ensuresavedobjectsareauthorized)
-- [filter](client._internal_namespace.AuthFilterHelpers.md#filter)
-
-## Properties
-
-### ensureSavedObjectsAreAuthorized
-
-• **ensureSavedObjectsAreAuthorized**: [`EnsureSOAuthCallback`](../modules/client._internal_namespace.md#ensuresoauthcallback)
-
-Utility function for checking that the returned entities are in fact authorized for the user making the request
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:123](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L123)
-
-___
-
-### filter
-
-• `Optional` **filter**: `KueryNode`
-
-The owner filter to pass to the saved object client's find operation that is scoped to the authorized owners
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:119](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L119)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthenticatedUser.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthenticatedUser.md
deleted file mode 100644
index 69dc207747edf..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthenticatedUser.md
+++ /dev/null
@@ -1,170 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuthenticatedUser
-
-# Interface: AuthenticatedUser
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuthenticatedUser
-
-Represents the currently authenticated user.
-
-## Hierarchy
-
-- [`User`](client._internal_namespace.User.md)
-
- ↳ **`AuthenticatedUser`**
-
-## Table of contents
-
-### Properties
-
-- [authentication\_provider](client._internal_namespace.AuthenticatedUser.md#authentication_provider)
-- [authentication\_realm](client._internal_namespace.AuthenticatedUser.md#authentication_realm)
-- [authentication\_type](client._internal_namespace.AuthenticatedUser.md#authentication_type)
-- [email](client._internal_namespace.AuthenticatedUser.md#email)
-- [enabled](client._internal_namespace.AuthenticatedUser.md#enabled)
-- [full\_name](client._internal_namespace.AuthenticatedUser.md#full_name)
-- [lookup\_realm](client._internal_namespace.AuthenticatedUser.md#lookup_realm)
-- [metadata](client._internal_namespace.AuthenticatedUser.md#metadata)
-- [roles](client._internal_namespace.AuthenticatedUser.md#roles)
-- [username](client._internal_namespace.AuthenticatedUser.md#username)
-
-## Properties
-
-### authentication\_provider
-
-• **authentication\_provider**: [`AuthenticationProvider`](client._internal_namespace.AuthenticationProvider.md)
-
-The authentication provider that used to authenticate user.
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authenticated_user.d.ts:22
-
-___
-
-### authentication\_realm
-
-• **authentication\_realm**: [`UserRealm`](client._internal_namespace.UserRealm.md)
-
-The name and type of the Realm that has authenticated the user.
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authenticated_user.d.ts:14
-
-___
-
-### authentication\_type
-
-• **authentication\_type**: `string`
-
-The AuthenticationType used by ES to authenticate the user.
-
-**`example`** "realm" | "api_key" | "token" | "anonymous" | "internal"
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authenticated_user.d.ts:28
-
-___
-
-### email
-
-• `Optional` **email**: `string`
-
-#### Inherited from
-
-[User](client._internal_namespace.User.md).[email](client._internal_namespace.User.md#email)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:3
-
-___
-
-### enabled
-
-• **enabled**: `boolean`
-
-#### Inherited from
-
-[User](client._internal_namespace.User.md).[enabled](client._internal_namespace.User.md#enabled)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:6
-
-___
-
-### full\_name
-
-• `Optional` **full\_name**: `string`
-
-#### Inherited from
-
-[User](client._internal_namespace.User.md).[full_name](client._internal_namespace.User.md#full_name)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:4
-
-___
-
-### lookup\_realm
-
-• **lookup\_realm**: [`UserRealm`](client._internal_namespace.UserRealm.md)
-
-The name and type of the Realm where the user information were retrieved from.
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authenticated_user.d.ts:18
-
-___
-
-### metadata
-
-• `Optional` **metadata**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `_deprecated?` | `boolean` |
-| `_deprecated_reason?` | `string` |
-| `_reserved` | `boolean` |
-
-#### Inherited from
-
-[User](client._internal_namespace.User.md).[metadata](client._internal_namespace.User.md#metadata)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:7
-
-___
-
-### roles
-
-• **roles**: readonly `string`[]
-
-#### Inherited from
-
-[User](client._internal_namespace.User.md).[roles](client._internal_namespace.User.md#roles)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:5
-
-___
-
-### username
-
-• **username**: `string`
-
-#### Inherited from
-
-[User](client._internal_namespace.User.md).[username](client._internal_namespace.User.md#username)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:2
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthenticationProvider.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthenticationProvider.md
deleted file mode 100644
index a10edc042b528..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthenticationProvider.md
+++ /dev/null
@@ -1,34 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuthenticationProvider
-
-# Interface: AuthenticationProvider
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuthenticationProvider
-
-Type and name tuple to identify provider used to authenticate user.
-
-## Table of contents
-
-### Properties
-
-- [name](client._internal_namespace.AuthenticationProvider.md#name)
-- [type](client._internal_namespace.AuthenticationProvider.md#type)
-
-## Properties
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authentication_provider.d.ts:6
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authentication_provider.d.ts:5
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthorizationMode-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthorizationMode-1.md
deleted file mode 100644
index ff75cd19e524c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthorizationMode-1.md
+++ /dev/null
@@ -1,31 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuthorizationMode
-
-# Interface: AuthorizationMode
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuthorizationMode
-
-## Table of contents
-
-### Methods
-
-- [useRbacForRequest](client._internal_namespace.AuthorizationMode-1.md#userbacforrequest)
-
-## Methods
-
-### useRbacForRequest
-
-▸ **useRbacForRequest**(`request`): `boolean`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/mode.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthorizationServiceSetup.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthorizationServiceSetup.md
deleted file mode 100644
index 5011fe972f36e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.AuthorizationServiceSetup.md
+++ /dev/null
@@ -1,71 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / AuthorizationServiceSetup
-
-# Interface: AuthorizationServiceSetup
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).AuthorizationServiceSetup
-
-Authorization services available on the setup contract of the security plugin.
-
-## Table of contents
-
-### Properties
-
-- [actions](client._internal_namespace.AuthorizationServiceSetup.md#actions)
-- [checkPrivilegesDynamicallyWithRequest](client._internal_namespace.AuthorizationServiceSetup.md#checkprivilegesdynamicallywithrequest)
-- [checkPrivilegesWithRequest](client._internal_namespace.AuthorizationServiceSetup.md#checkprivilegeswithrequest)
-- [checkSavedObjectsPrivilegesWithRequest](client._internal_namespace.AuthorizationServiceSetup.md#checksavedobjectsprivilegeswithrequest)
-- [mode](client._internal_namespace.AuthorizationServiceSetup.md#mode)
-
-## Properties
-
-### actions
-
-• **actions**: [`Actions`](../classes/client._internal_namespace.Actions.md)
-
-Actions are used to create the "actions" that are associated with Elasticsearch's
-application privileges, and are used to perform the authorization checks implemented
-by the various `checkPrivilegesWithRequest` derivatives.
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/authorization_service.d.ts:52
-
-___
-
-### checkPrivilegesDynamicallyWithRequest
-
-• **checkPrivilegesDynamicallyWithRequest**: [`CheckPrivilegesDynamicallyWithRequest`](../modules/client._internal_namespace.md#checkprivilegesdynamicallywithrequest)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/authorization_service.d.ts:54
-
-___
-
-### checkPrivilegesWithRequest
-
-• **checkPrivilegesWithRequest**: [`CheckPrivilegesWithRequest`](../modules/client._internal_namespace.md#checkprivilegeswithrequest)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/authorization_service.d.ts:53
-
-___
-
-### checkSavedObjectsPrivilegesWithRequest
-
-• **checkSavedObjectsPrivilegesWithRequest**: [`CheckSavedObjectsPrivilegesWithRequest`](../modules/client._internal_namespace.md#checksavedobjectsprivilegeswithrequest)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/authorization_service.d.ts:55
-
-___
-
-### mode
-
-• **mode**: [`AuthorizationMode`](client._internal_namespace.AuthorizationMode-1.md)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/authorization_service.d.ts:56
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BeforeSaveContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BeforeSaveContext.md
deleted file mode 100644
index 6e52bf637eada..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BeforeSaveContext.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BeforeSaveContext
-
-# Interface: BeforeSaveContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BeforeSaveContext
-
-## Table of contents
-
-### Properties
-
-- [taskInstance](client._internal_namespace.BeforeSaveContext.md#taskinstance)
-
-## Properties
-
-### taskInstance
-
-• **taskInstance**: [`TaskInstance`](client._internal_namespace.TaskInstance.md)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BuilderParameters.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BuilderParameters.md
deleted file mode 100644
index c91716f5b2248..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BuilderParameters.md
+++ /dev/null
@@ -1,205 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BuilderParameters
-
-# Interface: BuilderParameters
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BuilderParameters
-
-## Table of contents
-
-### Properties
-
-- [comment](client._internal_namespace.BuilderParameters.md#comment)
-- [connector](client._internal_namespace.BuilderParameters.md#connector)
-- [create\_case](client._internal_namespace.BuilderParameters.md#create_case)
-- [delete\_case](client._internal_namespace.BuilderParameters.md#delete_case)
-- [description](client._internal_namespace.BuilderParameters.md#description)
-- [pushed](client._internal_namespace.BuilderParameters.md#pushed)
-- [settings](client._internal_namespace.BuilderParameters.md#settings)
-- [status](client._internal_namespace.BuilderParameters.md#status)
-- [tags](client._internal_namespace.BuilderParameters.md#tags)
-- [title](client._internal_namespace.BuilderParameters.md#title)
-
-## Properties
-
-### comment
-
-• **comment**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.attachment` | { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } \| { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } \| { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:44](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L44)
-
-___
-
-### connector
-
-• **connector**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.connector` | { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:49](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L49)
-
-___
-
-### create\_case
-
-• **create\_case**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.connector` | { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } |
-| `parameters.payload.description` | `string` |
-| `parameters.payload.owner` | `string` |
-| `parameters.payload.settings` | { syncAlerts: boolean; } |
-| `parameters.payload.tags` | `string`[] |
-| `parameters.payload.title` | `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:56](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L56)
-
-___
-
-### delete\_case
-
-• **delete\_case**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:61](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L61)
-
-___
-
-### description
-
-• **description**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.description` | `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:25](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L25)
-
-___
-
-### pushed
-
-• **pushed**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.externalService` | { `connector_id`: `string` = rt.string } & { `connector_name`: `string` = rt.string; `external_id`: `string` = rt.string; `external_title`: `string` = rt.string; `external_url`: `string` = rt.string; `pushed_at`: `string` = rt.string; `pushed_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT } |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:34](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L34)
-
-___
-
-### settings
-
-• **settings**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.settings` | `Object` |
-| `parameters.payload.settings.syncAlerts` | `boolean` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:41](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L41)
-
-___
-
-### status
-
-• **status**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.status` | [`CaseStatuses`](../enums/client._internal_namespace.CaseStatuses.md) |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:28](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L28)
-
-___
-
-### tags
-
-• **tags**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.tags` | `string`[] |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:31](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L31)
-
-___
-
-### title
-
-• **title**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `parameters` | `Object` |
-| `parameters.payload` | `Object` |
-| `parameters.payload.title` | `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:22](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L22)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BuilderReturnValue.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BuilderReturnValue.md
deleted file mode 100644
index ab7e6bdade21e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BuilderReturnValue.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BuilderReturnValue
-
-# Interface: BuilderReturnValue
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BuilderReturnValue
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.BuilderReturnValue.md#attributes)
-- [references](client._internal_namespace.BuilderReturnValue.md#references)
-
-## Properties
-
-### attributes
-
-• **attributes**: [`Attributes`](client._internal_namespace.Attributes.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:93](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L93)
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:94](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L94)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md
deleted file mode 100644
index ac16ce838e615..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md
+++ /dev/null
@@ -1,125 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BulkCreateAttachmentDeletionUserAction
-
-# Interface: BulkCreateAttachmentDeletionUserAction
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BulkCreateAttachmentDeletionUserAction
-
-## Hierarchy
-
-- `Omit`<[`CommonUserActionArgs`](../modules/client._internal_namespace.md#commonuseractionargs), ``"owner"``\>
-
- ↳ **`BulkCreateAttachmentDeletionUserAction`**
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#action)
-- [attachmentId](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#attachmentid)
-- [attachments](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#attachments)
-- [caseId](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#caseid)
-- [connectorId](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#connectorid)
-- [unsecuredSavedObjectsClient](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#unsecuredsavedobjectsclient)
-- [user](client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md#user)
-
-## Properties
-
-### action
-
-• `Optional` **action**: ``"add"`` \| ``"create"`` \| ``"delete"`` \| ``"update"`` \| ``"push_to_service"``
-
-#### Inherited from
-
-Omit.action
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:80](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L80)
-
-___
-
-### attachmentId
-
-• `Optional` **attachmentId**: `string`
-
-#### Inherited from
-
-Omit.attachmentId
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:78](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L78)
-
-___
-
-### attachments
-
-• **attachments**: { `attachment`: { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } \| { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } \| { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } ; `id`: `string` ; `owner`: `string` }[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:95](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L95)
-
-___
-
-### caseId
-
-• **caseId**: `string`
-
-#### Inherited from
-
-Omit.caseId
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:76](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L76)
-
-___
-
-### connectorId
-
-• `Optional` **connectorId**: `string`
-
-#### Inherited from
-
-Omit.connectorId
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L79)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-Omit.unsecuredSavedObjectsClient
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
-
-___
-
-### user
-
-• **user**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Inherited from
-
-Omit.user
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:75](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L75)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md
deleted file mode 100644
index 5acc559d72638..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md
+++ /dev/null
@@ -1,72 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BulkCreateBulkUpdateCaseUserActions
-
-# Interface: BulkCreateBulkUpdateCaseUserActions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BulkCreateBulkUpdateCaseUserActions
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`BulkCreateBulkUpdateCaseUserActions`**
-
-## Table of contents
-
-### Properties
-
-- [originalCases](client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md#originalcases)
-- [unsecuredSavedObjectsClient](client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md#unsecuredsavedobjectsclient)
-- [updatedCases](client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md#updatedcases)
-- [user](client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md#user)
-
-## Properties
-
-### originalCases
-
-• **originalCases**: [`SavedObject`](client._internal_namespace.SavedObject.md)<{ `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }\>[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:89](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L89)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
-
-___
-
-### updatedCases
-
-• **updatedCases**: [`SavedObjectsUpdateResponse`](client._internal_namespace.SavedObjectsUpdateResponse.md)<{ `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }\>[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:90](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L90)
-
-___
-
-### user
-
-• **user**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:91](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L91)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateCaseDeletionUserAction.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateCaseDeletionUserAction.md
deleted file mode 100644
index d925395547e55..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkCreateCaseDeletionUserAction.md
+++ /dev/null
@@ -1,61 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BulkCreateCaseDeletionUserAction
-
-# Interface: BulkCreateCaseDeletionUserAction
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BulkCreateCaseDeletionUserAction
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`BulkCreateCaseDeletionUserAction`**
-
-## Table of contents
-
-### Properties
-
-- [cases](client._internal_namespace.BulkCreateCaseDeletionUserAction.md#cases)
-- [unsecuredSavedObjectsClient](client._internal_namespace.BulkCreateCaseDeletionUserAction.md#unsecuredsavedobjectsclient)
-- [user](client._internal_namespace.BulkCreateCaseDeletionUserAction.md#user)
-
-## Properties
-
-### cases
-
-• **cases**: { `connectorId`: `string` ; `id`: `string` ; `owner`: `string` }[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:78](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L78)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
-
-___
-
-### user
-
-• **user**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L79)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkUpdateAttachmentArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkUpdateAttachmentArgs.md
deleted file mode 100644
index ecaf5f4b535f7..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.BulkUpdateAttachmentArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / BulkUpdateAttachmentArgs
-
-# Interface: BulkUpdateAttachmentArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).BulkUpdateAttachmentArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`BulkUpdateAttachmentArgs`**
-
-## Table of contents
-
-### Properties
-
-- [comments](client._internal_namespace.BulkUpdateAttachmentArgs.md#comments)
-- [unsecuredSavedObjectsClient](client._internal_namespace.BulkUpdateAttachmentArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### comments
-
-• **comments**: [`UpdateArgs`](client._internal_namespace.UpdateArgs.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:62](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L62)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CancellableTask.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CancellableTask.md
deleted file mode 100644
index f7a6457695400..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CancellableTask.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CancellableTask
-
-# Interface: CancellableTask
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CancellableTask
-
-## Table of contents
-
-### Properties
-
-- [cancel](client._internal_namespace.CancellableTask.md#cancel)
-- [run](client._internal_namespace.CancellableTask.md#run)
-
-## Properties
-
-### cancel
-
-• `Optional` **cancel**: [`CancelFunction`](../modules/client._internal_namespace.md#cancelfunction)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:68
-
-___
-
-### run
-
-• **run**: [`RunFunction`](../modules/client._internal_namespace.md#runfunction)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:67
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Capabilities.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Capabilities.md
deleted file mode 100644
index b9cddb8df9faf..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Capabilities.md
+++ /dev/null
@@ -1,63 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Capabilities
-
-# Interface: Capabilities
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Capabilities
-
-The read-only set of capabilities available for the current UI session.
-Capabilities are simple key-value pairs of (string, boolean), where the string denotes the capability ID,
-and the boolean is a flag indicating if the capability is enabled or disabled.
-
-## Indexable
-
-▪ [key: `string`]: `Record`<`string`, `boolean` \| `Record`<`string`, `boolean`\>\>
-
-Custom capabilities, registered by plugins.
-
-## Table of contents
-
-### Properties
-
-- [catalogue](client._internal_namespace.Capabilities.md#catalogue)
-- [management](client._internal_namespace.Capabilities.md#management)
-- [navLinks](client._internal_namespace.Capabilities.md#navlinks)
-
-## Properties
-
-### catalogue
-
-• **catalogue**: `Record`<`string`, `boolean`\>
-
-Catalogue capabilities. Catalogue entries drive the visibility of the Kibana homepage options.
-
-#### Defined in
-
-src/core/target/types/types/capabilities.d.ts:16
-
-___
-
-### management
-
-• **management**: `Object`
-
-Management section capabilities.
-
-#### Index signature
-
-▪ [sectionId: `string`]: `Record`<`string`, `boolean`\>
-
-#### Defined in
-
-src/core/target/types/types/capabilities.d.ts:12
-
-___
-
-### navLinks
-
-• **navLinks**: `Record`<`string`, `boolean`\>
-
-Navigation link capabilities.
-
-#### Defined in
-
-src/core/target/types/types/capabilities.d.ts:10
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CaseCommentStats.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CaseCommentStats.md
deleted file mode 100644
index e4596ea3eacc1..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CaseCommentStats.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CaseCommentStats
-
-# Interface: CaseCommentStats
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CaseCommentStats
-
-## Table of contents
-
-### Properties
-
-- [alertTotals](client._internal_namespace.CaseCommentStats.md#alerttotals)
-- [commentTotals](client._internal_namespace.CaseCommentStats.md#commenttotals)
-
-## Properties
-
-### alertTotals
-
-• **alertTotals**: `Map`<`string`, `number`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:115](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L115)
-
-___
-
-### commentTotals
-
-• **commentTotals**: `Map`<`string`, `number`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:114](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L114)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CasesClientArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CasesClientArgs.md
deleted file mode 100644
index 9ec38679b26d0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CasesClientArgs.md
+++ /dev/null
@@ -1,160 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CasesClientArgs
-
-# Interface: CasesClientArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CasesClientArgs
-
-Parameters for initializing a cases client
-
-## Table of contents
-
-### Properties
-
-- [actionsClient](client._internal_namespace.CasesClientArgs.md#actionsclient)
-- [alertsService](client._internal_namespace.CasesClientArgs.md#alertsservice)
-- [attachmentService](client._internal_namespace.CasesClientArgs.md#attachmentservice)
-- [authorization](client._internal_namespace.CasesClientArgs.md#authorization)
-- [caseConfigureService](client._internal_namespace.CasesClientArgs.md#caseconfigureservice)
-- [caseService](client._internal_namespace.CasesClientArgs.md#caseservice)
-- [connectorMappingsService](client._internal_namespace.CasesClientArgs.md#connectormappingsservice)
-- [lensEmbeddableFactory](client._internal_namespace.CasesClientArgs.md#lensembeddablefactory)
-- [logger](client._internal_namespace.CasesClientArgs.md#logger)
-- [unsecuredSavedObjectsClient](client._internal_namespace.CasesClientArgs.md#unsecuredsavedobjectsclient)
-- [user](client._internal_namespace.CasesClientArgs.md#user)
-- [userActionService](client._internal_namespace.CasesClientArgs.md#useractionservice)
-
-## Properties
-
-### actionsClient
-
-• `Readonly` **actionsClient**: `PublicMethodsOf`<[`ActionsClient`](../modules/client._internal_namespace.md#actionsclient)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:38](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L38)
-
-___
-
-### alertsService
-
-• `Readonly` **alertsService**: [`AlertService`](../classes/client._internal_namespace.AlertService.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:33](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L33)
-
-___
-
-### attachmentService
-
-• `Readonly` **attachmentService**: [`AttachmentService`](../classes/client._internal_namespace.AttachmentService.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:34](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L34)
-
-___
-
-### authorization
-
-• `Readonly` **authorization**: `PublicMethodsOf`<[`Authorization`](../classes/client._internal_namespace.Authorization.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:37](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L37)
-
-___
-
-### caseConfigureService
-
-• `Readonly` **caseConfigureService**: [`CaseConfigureService`](../classes/client._internal_namespace.CaseConfigureService.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:27](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L27)
-
-___
-
-### caseService
-
-• `Readonly` **caseService**: [`CasesService`](../classes/client._internal_namespace.CasesService.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:28](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L28)
-
-___
-
-### connectorMappingsService
-
-• `Readonly` **connectorMappingsService**: [`ConnectorMappingsService`](../classes/client._internal_namespace.ConnectorMappingsService.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:29](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L29)
-
-___
-
-### lensEmbeddableFactory
-
-• `Readonly` **lensEmbeddableFactory**: () => [`EmbeddableRegistryDefinition`](client._internal_namespace.EmbeddableRegistryDefinition.md)<[`EmbeddableStateWithType`](../modules/client._internal_namespace.md#embeddablestatewithtype)\>
-
-#### Type declaration
-
-▸ (): [`EmbeddableRegistryDefinition`](client._internal_namespace.EmbeddableRegistryDefinition.md)<[`EmbeddableStateWithType`](../modules/client._internal_namespace.md#embeddablestatewithtype)\>
-
-##### Returns
-
-[`EmbeddableRegistryDefinition`](client._internal_namespace.EmbeddableRegistryDefinition.md)<[`EmbeddableStateWithType`](../modules/client._internal_namespace.md#embeddablestatewithtype)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:36](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L36)
-
-___
-
-### logger
-
-• `Readonly` **logger**: `Logger`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:35](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L35)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• `Readonly` **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:31](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L31)
-
-___
-
-### user
-
-• `Readonly` **user**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L30)
-
-___
-
-### userActionService
-
-• `Readonly` **userActionService**: [`CaseUserActionService`](../classes/client._internal_namespace.CaseUserActionService.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/types.ts:32](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/types.ts#L32)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CasesMapWithPageInfo.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CasesMapWithPageInfo.md
deleted file mode 100644
index a39f560b084af..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CasesMapWithPageInfo.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CasesMapWithPageInfo
-
-# Interface: CasesMapWithPageInfo
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CasesMapWithPageInfo
-
-## Table of contents
-
-### Properties
-
-- [casesMap](client._internal_namespace.CasesMapWithPageInfo.md#casesmap)
-- [page](client._internal_namespace.CasesMapWithPageInfo.md#page)
-- [perPage](client._internal_namespace.CasesMapWithPageInfo.md#perpage)
-- [total](client._internal_namespace.CasesMapWithPageInfo.md#total)
-
-## Properties
-
-### casesMap
-
-• **casesMap**: `Map`<`string`, { `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `totalAlerts`: `number` = rt.number; `totalComment`: `number` = rt.number; `version`: `string` = rt.string } & { `comments`: `undefined` \| { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }[] }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:119](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L119)
-
-___
-
-### page
-
-• **page**: `number`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:120](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L120)
-
-___
-
-### perPage
-
-• **perPage**: `number`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:121](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L121)
-
-___
-
-### total
-
-• **total**: `number`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:122](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L122)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivileges.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivileges.md
deleted file mode 100644
index 6cf7583198177..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivileges.md
+++ /dev/null
@@ -1,78 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CheckPrivileges
-
-# Interface: CheckPrivileges
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CheckPrivileges
-
-## Table of contents
-
-### Methods
-
-- [atSpace](client._internal_namespace.CheckPrivileges.md#atspace)
-- [atSpaces](client._internal_namespace.CheckPrivileges.md#atspaces)
-- [globally](client._internal_namespace.CheckPrivileges.md#globally)
-
-## Methods
-
-### atSpace
-
-▸ **atSpace**(`spaceId`, `privileges`, `options?`): `Promise`<[`CheckPrivilegesResponse`](client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `spaceId` | `string` |
-| `privileges` | [`CheckPrivilegesPayload`](client._internal_namespace.CheckPrivilegesPayload.md) |
-| `options?` | [`CheckPrivilegesOptions`](client._internal_namespace.CheckPrivilegesOptions.md) |
-
-#### Returns
-
-`Promise`<[`CheckPrivilegesResponse`](client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:61
-
-___
-
-### atSpaces
-
-▸ **atSpaces**(`spaceIds`, `privileges`, `options?`): `Promise`<[`CheckPrivilegesResponse`](client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `spaceIds` | `string`[] |
-| `privileges` | [`CheckPrivilegesPayload`](client._internal_namespace.CheckPrivilegesPayload.md) |
-| `options?` | [`CheckPrivilegesOptions`](client._internal_namespace.CheckPrivilegesOptions.md) |
-
-#### Returns
-
-`Promise`<[`CheckPrivilegesResponse`](client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:62
-
-___
-
-### globally
-
-▸ **globally**(`privileges`, `options?`): `Promise`<[`CheckPrivilegesResponse`](client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `privileges` | [`CheckPrivilegesPayload`](client._internal_namespace.CheckPrivilegesPayload.md) |
-| `options?` | [`CheckPrivilegesOptions`](client._internal_namespace.CheckPrivilegesOptions.md) |
-
-#### Returns
-
-`Promise`<[`CheckPrivilegesResponse`](client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:63
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesOptions.md
deleted file mode 100644
index 85caefaa3b490..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesOptions.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CheckPrivilegesOptions
-
-# Interface: CheckPrivilegesOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CheckPrivilegesOptions
-
-Options to influce the privilege checks.
-
-## Table of contents
-
-### Properties
-
-- [requireLoginAction](client._internal_namespace.CheckPrivilegesOptions.md#requireloginaction)
-
-## Properties
-
-### requireLoginAction
-
-• `Optional` **requireLoginAction**: `boolean`
-
-Whether or not the `login` action should be required (default: true).
-Setting this to false is not advised except for special circumstances, when you do not require
-the request to belong to a user capable of logging into Kibana.
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:31
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesPayload.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesPayload.md
deleted file mode 100644
index 29242fb43dbab..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesPayload.md
+++ /dev/null
@@ -1,39 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CheckPrivilegesPayload
-
-# Interface: CheckPrivilegesPayload
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CheckPrivilegesPayload
-
-## Table of contents
-
-### Properties
-
-- [elasticsearch](client._internal_namespace.CheckPrivilegesPayload.md#elasticsearch)
-- [kibana](client._internal_namespace.CheckPrivilegesPayload.md#kibana)
-
-## Properties
-
-### elasticsearch
-
-• `Optional` **elasticsearch**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `cluster` | `string`[] |
-| `index` | `Record`<`string`, `string`[]\> |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:67
-
-___
-
-### kibana
-
-• `Optional` **kibana**: `string` \| `string`[]
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:66
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesResponse.md
deleted file mode 100644
index 8e4ce4ae9c815..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CheckPrivilegesResponse.md
+++ /dev/null
@@ -1,52 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CheckPrivilegesResponse
-
-# Interface: CheckPrivilegesResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CheckPrivilegesResponse
-
-## Table of contents
-
-### Properties
-
-- [hasAllRequested](client._internal_namespace.CheckPrivilegesResponse.md#hasallrequested)
-- [privileges](client._internal_namespace.CheckPrivilegesResponse.md#privileges)
-- [username](client._internal_namespace.CheckPrivilegesResponse.md#username)
-
-## Properties
-
-### hasAllRequested
-
-• **hasAllRequested**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:34
-
-___
-
-### privileges
-
-• **privileges**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `elasticsearch` | `Object` |
-| `elasticsearch.cluster` | { `authorized`: `boolean` ; `privilege`: `string` }[] |
-| `elasticsearch.index` | `Object` |
-| `kibana` | { `authorized`: `boolean` ; `privilege`: `string` ; `resource?`: `string` }[] |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:36
-
-___
-
-### username
-
-• **username**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:35
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs-1.md
deleted file mode 100644
index ded25fa2ce105..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs-1.md
+++ /dev/null
@@ -1,55 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ClientArgs
-
-# Interface: ClientArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ClientArgs
-
-## Hierarchy
-
-- **`ClientArgs`**
-
- ↳ [`GetCaseIdsByAlertIdArgs`](client._internal_namespace.GetCaseIdsByAlertIdArgs.md)
-
- ↳ [`GetCaseArgs`](client._internal_namespace.GetCaseArgs.md)
-
- ↳ [`GetCasesArgs`](client._internal_namespace.GetCasesArgs.md)
-
- ↳ [`FindCasesArgs`](client._internal_namespace.FindCasesArgs.md)
-
- ↳ [`PostCaseArgs`](client._internal_namespace.PostCaseArgs.md)
-
- ↳ [`PatchCasesArgs`](client._internal_namespace.PatchCasesArgs.md)
-
- ↳ [`BulkCreateCaseDeletionUserAction`](client._internal_namespace.BulkCreateCaseDeletionUserAction.md)
-
- ↳ [`BulkCreateBulkUpdateCaseUserActions`](client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md)
-
- ↳ [`GetCaseUserActionArgs`](client._internal_namespace.GetCaseUserActionArgs.md)
-
- ↳ [`CreateUserActionES`](client._internal_namespace.CreateUserActionES.md)
-
- ↳ [`PostCaseUserActionArgs`](client._internal_namespace.PostCaseUserActionArgs.md)
-
- ↳ [`AttachedToCaseArgs`](client._internal_namespace.AttachedToCaseArgs.md)
-
- ↳ [`GetAttachmentArgs`](client._internal_namespace.GetAttachmentArgs.md)
-
- ↳ [`CreateAttachmentArgs`](client._internal_namespace.CreateAttachmentArgs.md)
-
- ↳ [`BulkUpdateAttachmentArgs`](client._internal_namespace.BulkUpdateAttachmentArgs.md)
-
-## Table of contents
-
-### Properties
-
-- [unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs-2.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs-2.md
deleted file mode 100644
index 78bc19f876c89..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs-2.md
+++ /dev/null
@@ -1,31 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ClientArgs
-
-# Interface: ClientArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ClientArgs
-
-## Hierarchy
-
-- **`ClientArgs`**
-
- ↳ [`FindConnectorMappingsArgs`](client._internal_namespace.FindConnectorMappingsArgs.md)
-
- ↳ [`PostConnectorMappingsArgs`](client._internal_namespace.PostConnectorMappingsArgs.md)
-
- ↳ [`UpdateConnectorMappingsArgs`](client._internal_namespace.UpdateConnectorMappingsArgs.md)
-
-## Table of contents
-
-### Properties
-
-- [unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-2.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L15)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs.md
deleted file mode 100644
index 9e5709a8b99ba..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ClientArgs.md
+++ /dev/null
@@ -1,33 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ClientArgs
-
-# Interface: ClientArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ClientArgs
-
-## Hierarchy
-
-- **`ClientArgs`**
-
- ↳ [`GetCaseConfigureArgs`](client._internal_namespace.GetCaseConfigureArgs.md)
-
- ↳ [`FindCaseConfigureArgs`](client._internal_namespace.FindCaseConfigureArgs.md)
-
- ↳ [`PostCaseConfigureArgs`](client._internal_namespace.PostCaseConfigureArgs.md)
-
- ↳ [`PatchCaseConfigureArgs`](client._internal_namespace.PatchCaseConfigureArgs.md)
-
-## Table of contents
-
-### Properties
-
-- [unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L30)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CommonArguments.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CommonArguments.md
deleted file mode 100644
index ed1bb0d81f42a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CommonArguments.md
+++ /dev/null
@@ -1,84 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CommonArguments
-
-# Interface: CommonArguments
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CommonArguments
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.CommonArguments.md#action)
-- [attachmentId](client._internal_namespace.CommonArguments.md#attachmentid)
-- [caseId](client._internal_namespace.CommonArguments.md#caseid)
-- [connectorId](client._internal_namespace.CommonArguments.md#connectorid)
-- [owner](client._internal_namespace.CommonArguments.md#owner)
-- [user](client._internal_namespace.CommonArguments.md#user)
-
-## Properties
-
-### action
-
-• `Optional` **action**: ``"add"`` \| ``"create"`` \| ``"delete"`` \| ``"update"`` \| ``"push_to_service"``
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:80](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L80)
-
-___
-
-### attachmentId
-
-• `Optional` **attachmentId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:78](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L78)
-
-___
-
-### caseId
-
-• **caseId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:76](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L76)
-
-___
-
-### connectorId
-
-• `Optional` **connectorId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L79)
-
-___
-
-### owner
-
-• **owner**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:77](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L77)
-
-___
-
-### user
-
-• **user**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:75](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L75)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConcreteTaskInstance.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConcreteTaskInstance.md
deleted file mode 100644
index db3d362c3dbc3..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConcreteTaskInstance.md
+++ /dev/null
@@ -1,291 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ConcreteTaskInstance
-
-# Interface: ConcreteTaskInstance
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ConcreteTaskInstance
-
-A task instance that has an id and is ready for storage.
-
-## Hierarchy
-
-- [`TaskInstance`](client._internal_namespace.TaskInstance.md)
-
- ↳ **`ConcreteTaskInstance`**
-
-## Table of contents
-
-### Properties
-
-- [attempts](client._internal_namespace.ConcreteTaskInstance.md#attempts)
-- [id](client._internal_namespace.ConcreteTaskInstance.md#id)
-- [ownerId](client._internal_namespace.ConcreteTaskInstance.md#ownerid)
-- [params](client._internal_namespace.ConcreteTaskInstance.md#params)
-- [retryAt](client._internal_namespace.ConcreteTaskInstance.md#retryat)
-- [runAt](client._internal_namespace.ConcreteTaskInstance.md#runat)
-- [schedule](client._internal_namespace.ConcreteTaskInstance.md#schedule)
-- [scheduledAt](client._internal_namespace.ConcreteTaskInstance.md#scheduledat)
-- [scope](client._internal_namespace.ConcreteTaskInstance.md#scope)
-- [startedAt](client._internal_namespace.ConcreteTaskInstance.md#startedat)
-- [state](client._internal_namespace.ConcreteTaskInstance.md#state)
-- [status](client._internal_namespace.ConcreteTaskInstance.md#status)
-- [taskType](client._internal_namespace.ConcreteTaskInstance.md#tasktype)
-- [traceparent](client._internal_namespace.ConcreteTaskInstance.md#traceparent)
-- [user](client._internal_namespace.ConcreteTaskInstance.md#user)
-- [version](client._internal_namespace.ConcreteTaskInstance.md#version)
-
-## Properties
-
-### attempts
-
-• **attempts**: `number`
-
-The number of unsuccessful attempts since the last successful run. This
-will be zeroed out after a successful run.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:244
-
-___
-
-### id
-
-• **id**: `string`
-
-The id of the Elastic document that stores this instance's data. This can
-be passed by the caller when scheduling the task.
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[id](client._internal_namespace.TaskInstance.md#id)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:230
-
-___
-
-### ownerId
-
-• **ownerId**: ``null`` \| `string`
-
-The random uuid of the Kibana instance which claimed ownership of the task last
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[ownerId](client._internal_namespace.TaskInstance.md#ownerid)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:274
-
-___
-
-### params
-
-• **params**: `Record`<`string`, `any`\>
-
-A task-specific set of parameters, used by the task's run function to tailor
-its work. This is generally user-input, such as { sms: '333-444-2222' }.
-
-#### Inherited from
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[params](client._internal_namespace.TaskInstance.md#params)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:182
-
-___
-
-### retryAt
-
-• **retryAt**: ``null`` \| `Date`
-
-The date and time that this task should re-execute if stuck in "running" / timeout
-status. This value is only set when status is set to "running".
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[retryAt](client._internal_namespace.TaskInstance.md#retryat)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:264
-
-___
-
-### runAt
-
-• **runAt**: `Date`
-
-The date and time that this task is scheduled to be run. It is not guaranteed
-to run at this time, but it is guaranteed not to run earlier than this.
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[runAt](client._internal_namespace.TaskInstance.md#runat)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:253
-
-___
-
-### schedule
-
-• `Optional` **schedule**: [`IntervalSchedule`](client._internal_namespace.IntervalSchedule.md)
-
-A TaskSchedule string, which specifies this as a recurring task.
-
-Currently, this supports a single format: an interval in minutes or seconds (e.g. '5m', '30s').
-
-#### Inherited from
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[schedule](client._internal_namespace.TaskInstance.md#schedule)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:177
-
-___
-
-### scheduledAt
-
-• **scheduledAt**: `Date`
-
-The date and time that this task was originally scheduled. This is used
-for convenience to task run functions, and for troubleshooting.
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[scheduledAt](client._internal_namespace.TaskInstance.md#scheduledat)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:239
-
-___
-
-### scope
-
-• `Optional` **scope**: `string`[]
-
-Used to group tasks for querying. So, reporting might schedule tasks with a scope of 'reporting',
-and then query such tasks to provide a glimpse at only reporting tasks, rather than at all tasks.
-
-#### Inherited from
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[scope](client._internal_namespace.TaskInstance.md#scope)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:201
-
-___
-
-### startedAt
-
-• **startedAt**: ``null`` \| `Date`
-
-The date and time that this task started execution. This is used to determine
-the "real" runAt that ended up running the task. This value is only set
-when status is set to "running".
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[startedAt](client._internal_namespace.TaskInstance.md#startedat)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:259
-
-___
-
-### state
-
-• **state**: `Record`<`string`, `any`\>
-
-The state passed into the task's run function, and returned by the previous
-run. If there was no previous run, or if the previous run did not return
-any state, this will be the empy object: {}
-
-#### Overrides
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[state](client._internal_namespace.TaskInstance.md#state)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:270
-
-___
-
-### status
-
-• **status**: [`TaskStatus`](../enums/client._internal_namespace.TaskStatus.md)
-
-Indicates whether or not the task is currently running.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:248
-
-___
-
-### taskType
-
-• **taskType**: `string`
-
-The task definition type whose run function will execute this instance.
-
-#### Inherited from
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[taskType](client._internal_namespace.TaskInstance.md#tasktype)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:149
-
-___
-
-### traceparent
-
-• `Optional` **traceparent**: `string`
-
-The serialized traceparent string of the current APM transaction or span.
-
-#### Inherited from
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[traceparent](client._internal_namespace.TaskInstance.md#traceparent)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:192
-
-___
-
-### user
-
-• `Optional` **user**: `string`
-
-The id of the user who scheduled this task.
-
-#### Inherited from
-
-[TaskInstance](client._internal_namespace.TaskInstance.md).[user](client._internal_namespace.TaskInstance.md#user)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:196
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-The saved object version from the Elaticsearch document.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:234
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConnectorToken.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConnectorToken.md
deleted file mode 100644
index c60e9bca79a7f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConnectorToken.md
+++ /dev/null
@@ -1,82 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ConnectorToken
-
-# Interface: ConnectorToken
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ConnectorToken
-
-## Hierarchy
-
-- [`SavedObjectAttributes`](client._internal_namespace.SavedObjectAttributes.md)
-
- ↳ **`ConnectorToken`**
-
-## Table of contents
-
-### Properties
-
-- [connectorId](client._internal_namespace.ConnectorToken.md#connectorid)
-- [createdAt](client._internal_namespace.ConnectorToken.md#createdat)
-- [expiresAt](client._internal_namespace.ConnectorToken.md#expiresat)
-- [token](client._internal_namespace.ConnectorToken.md#token)
-- [tokenType](client._internal_namespace.ConnectorToken.md#tokentype)
-- [updatedAt](client._internal_namespace.ConnectorToken.md#updatedat)
-
-## Properties
-
-### connectorId
-
-• **connectorId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:123
-
-___
-
-### createdAt
-
-• **createdAt**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:127
-
-___
-
-### expiresAt
-
-• **expiresAt**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:126
-
-___
-
-### token
-
-• **token**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:125
-
-___
-
-### tokenType
-
-• **tokenType**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:124
-
-___
-
-### updatedAt
-
-• `Optional` **updatedAt**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:128
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions-1.md
deleted file mode 100644
index 1f7901ac983f1..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions-1.md
+++ /dev/null
@@ -1,60 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ConstructorOptions
-
-# Interface: ConstructorOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ConstructorOptions
-
-## Table of contents
-
-### Properties
-
-- [authentication](client._internal_namespace.ConstructorOptions-1.md#authentication)
-- [authorization](client._internal_namespace.ConstructorOptions-1.md#authorization)
-- [authorizationMode](client._internal_namespace.ConstructorOptions-1.md#authorizationmode)
-- [request](client._internal_namespace.ConstructorOptions-1.md#request)
-
-## Properties
-
-### authentication
-
-• `Optional` **authentication**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `getCurrentUser` | (`request`: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\>) => ``null`` \| [`AuthenticatedUser`](client._internal_namespace.AuthenticatedUser.md) |
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/authorization/actions_authorization.d.ts:7
-
-___
-
-### authorization
-
-• `Optional` **authorization**: [`AuthorizationServiceSetup`](client._internal_namespace.AuthorizationServiceSetup.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/authorization/actions_authorization.d.ts:6
-
-___
-
-### authorizationMode
-
-• `Optional` **authorizationMode**: [`AuthorizationMode`](../enums/client._internal_namespace.AuthorizationMode.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/authorization/actions_authorization.d.ts:8
-
-___
-
-### request
-
-• **request**: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/authorization/actions_authorization.d.ts:5
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions-2.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions-2.md
deleted file mode 100644
index fed308c053049..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions-2.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ConstructorOptions
-
-# Interface: ConstructorOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ConstructorOptions
-
-## Table of contents
-
-### Properties
-
-- [encryptedSavedObjectsClient](client._internal_namespace.ConstructorOptions-2.md#encryptedsavedobjectsclient)
-- [logger](client._internal_namespace.ConstructorOptions-2.md#logger)
-- [unsecuredSavedObjectsClient](client._internal_namespace.ConstructorOptions-2.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### encryptedSavedObjectsClient
-
-• **encryptedSavedObjectsClient**: [`EncryptedSavedObjectsClient`](client._internal_namespace.EncryptedSavedObjectsClient.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:6
-
-___
-
-### logger
-
-• **logger**: `Logger`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:8
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:7
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions.md
deleted file mode 100644
index 67923b89864f8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ConstructorOptions.md
+++ /dev/null
@@ -1,153 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ConstructorOptions
-
-# Interface: ConstructorOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ConstructorOptions
-
-## Table of contents
-
-### Properties
-
-- [actionExecutor](client._internal_namespace.ConstructorOptions.md#actionexecutor)
-- [actionTypeRegistry](client._internal_namespace.ConstructorOptions.md#actiontyperegistry)
-- [auditLogger](client._internal_namespace.ConstructorOptions.md#auditlogger)
-- [authorization](client._internal_namespace.ConstructorOptions.md#authorization)
-- [connectorTokenClient](client._internal_namespace.ConstructorOptions.md#connectortokenclient)
-- [defaultKibanaIndex](client._internal_namespace.ConstructorOptions.md#defaultkibanaindex)
-- [ephemeralExecutionEnqueuer](client._internal_namespace.ConstructorOptions.md#ephemeralexecutionenqueuer)
-- [executionEnqueuer](client._internal_namespace.ConstructorOptions.md#executionenqueuer)
-- [preconfiguredActions](client._internal_namespace.ConstructorOptions.md#preconfiguredactions)
-- [request](client._internal_namespace.ConstructorOptions.md#request)
-- [scopedClusterClient](client._internal_namespace.ConstructorOptions.md#scopedclusterclient)
-- [unsecuredSavedObjectsClient](client._internal_namespace.ConstructorOptions.md#unsecuredsavedobjectsclient)
-- [usageCounter](client._internal_namespace.ConstructorOptions.md#usagecounter)
-
-## Properties
-
-### actionExecutor
-
-• **actionExecutor**: [`ActionExecutorContract`](../modules/client._internal_namespace.md#actionexecutorcontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:30
-
-___
-
-### actionTypeRegistry
-
-• **actionTypeRegistry**: [`ActionTypeRegistry`](../classes/client._internal_namespace.ActionTypeRegistry.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:27
-
-___
-
-### auditLogger
-
-• `Optional` **auditLogger**: [`AuditLogger`](client._internal_namespace.AuditLogger.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:35
-
-___
-
-### authorization
-
-• **authorization**: [`ActionsAuthorization`](../classes/client._internal_namespace.ActionsAuthorization.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:34
-
-___
-
-### connectorTokenClient
-
-• **connectorTokenClient**: [`ConnectorTokenClientContract`](../modules/client._internal_namespace.md#connectortokenclientcontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:37
-
-___
-
-### defaultKibanaIndex
-
-• **defaultKibanaIndex**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:25
-
-___
-
-### ephemeralExecutionEnqueuer
-
-• **ephemeralExecutionEnqueuer**: [`ExecutionEnqueuer`](../modules/client._internal_namespace.md#executionenqueuer)<[`RunNowResult`](client._internal_namespace.RunNowResult.md)\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:32
-
-___
-
-### executionEnqueuer
-
-• **executionEnqueuer**: [`ExecutionEnqueuer`](../modules/client._internal_namespace.md#executionenqueuer)<`void`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:31
-
-___
-
-### preconfiguredActions
-
-• **preconfiguredActions**: [`PreConfiguredAction`](client._internal_namespace.PreConfiguredAction.md)<[`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig), [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets)\>[]
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:29
-
-___
-
-### request
-
-• **request**: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:33
-
-___
-
-### scopedClusterClient
-
-• **scopedClusterClient**: [`IScopedClusterClient`](client._internal_namespace.IScopedClusterClient.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:26
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:28
-
-___
-
-### usageCounter
-
-• `Optional` **usageCounter**: [`IUsageCounter`](client._internal_namespace.IUsageCounter.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:36
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CountActionsAttachedToCaseArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CountActionsAttachedToCaseArgs.md
deleted file mode 100644
index a71324b5543ff..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CountActionsAttachedToCaseArgs.md
+++ /dev/null
@@ -1,72 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CountActionsAttachedToCaseArgs
-
-# Interface: CountActionsAttachedToCaseArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CountActionsAttachedToCaseArgs
-
-## Hierarchy
-
-- [`AttachedToCaseArgs`](client._internal_namespace.AttachedToCaseArgs.md)
-
- ↳ **`CountActionsAttachedToCaseArgs`**
-
-## Table of contents
-
-### Properties
-
-- [aggregations](client._internal_namespace.CountActionsAttachedToCaseArgs.md#aggregations)
-- [caseId](client._internal_namespace.CountActionsAttachedToCaseArgs.md#caseid)
-- [filter](client._internal_namespace.CountActionsAttachedToCaseArgs.md#filter)
-- [unsecuredSavedObjectsClient](client._internal_namespace.CountActionsAttachedToCaseArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### aggregations
-
-• **aggregations**: `Record`<`string`, `AggregationsAggregationContainer`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:40](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L40)
-
-___
-
-### caseId
-
-• **caseId**: `string`
-
-#### Inherited from
-
-[AttachedToCaseArgs](client._internal_namespace.AttachedToCaseArgs.md).[caseId](client._internal_namespace.AttachedToCaseArgs.md#caseid)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:33](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L33)
-
-___
-
-### filter
-
-• `Optional` **filter**: `KueryNode`
-
-#### Inherited from
-
-[AttachedToCaseArgs](client._internal_namespace.AttachedToCaseArgs.md).[filter](client._internal_namespace.AttachedToCaseArgs.md#filter)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:34](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L34)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[AttachedToCaseArgs](client._internal_namespace.AttachedToCaseArgs.md).[unsecuredSavedObjectsClient](client._internal_namespace.AttachedToCaseArgs.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateAttachmentArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateAttachmentArgs.md
deleted file mode 100644
index 50030284f8fb6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateAttachmentArgs.md
+++ /dev/null
@@ -1,64 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CreateAttachmentArgs
-
-# Interface: CreateAttachmentArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CreateAttachmentArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`CreateAttachmentArgs`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.CreateAttachmentArgs.md#attributes)
-- [id](client._internal_namespace.CreateAttachmentArgs.md#id)
-- [references](client._internal_namespace.CreateAttachmentArgs.md#references)
-- [unsecuredSavedObjectsClient](client._internal_namespace.CreateAttachmentArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attributes
-
-• **attributes**: { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } \| { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } \| { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:48](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L48)
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:50](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L50)
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:49](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L49)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateAuditMsgParams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateAuditMsgParams.md
deleted file mode 100644
index 30c4ab0076bf0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateAuditMsgParams.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CreateAuditMsgParams
-
-# Interface: CreateAuditMsgParams
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CreateAuditMsgParams
-
-## Table of contents
-
-### Properties
-
-- [entity](client._internal_namespace.CreateAuditMsgParams.md#entity)
-- [error](client._internal_namespace.CreateAuditMsgParams.md#error)
-- [operation](client._internal_namespace.CreateAuditMsgParams.md#operation)
-
-## Properties
-
-### entity
-
-• `Optional` **entity**: [`OwnerEntity`](client._internal_namespace.OwnerEntity.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/audit_logger.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/audit_logger.ts#L15)
-
-___
-
-### error
-
-• `Optional` **error**: `Error`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/audit_logger.ts:16](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/audit_logger.ts#L16)
-
-___
-
-### operation
-
-• **operation**: [`OperationDetails`](client._internal_namespace.OperationDetails.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/audit_logger.ts:14](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/audit_logger.ts#L14)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateOptions-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateOptions-1.md
deleted file mode 100644
index 77e84843801b5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateOptions-1.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CreateOptions
-
-# Interface: CreateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CreateOptions
-
-## Table of contents
-
-### Properties
-
-- [connectorId](client._internal_namespace.CreateOptions-1.md#connectorid)
-- [expiresAtMillis](client._internal_namespace.CreateOptions-1.md#expiresatmillis)
-- [token](client._internal_namespace.CreateOptions-1.md#token)
-- [tokenType](client._internal_namespace.CreateOptions-1.md#tokentype)
-
-## Properties
-
-### connectorId
-
-• **connectorId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:11
-
-___
-
-### expiresAtMillis
-
-• **expiresAtMillis**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:13
-
-___
-
-### token
-
-• **token**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:12
-
-___
-
-### tokenType
-
-• `Optional` **tokenType**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:14
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateOptions.md
deleted file mode 100644
index 1070beb2f0304..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateOptions.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CreateOptions
-
-# Interface: CreateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CreateOptions
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.CreateOptions.md#action)
-
-## Properties
-
-### action
-
-• **action**: [`Action`](client._internal_namespace.Action.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:22
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateUserAction.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateUserAction.md
deleted file mode 100644
index 5211a50019cae..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateUserAction.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CreateUserAction
-
-# Interface: CreateUserAction
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CreateUserAction
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | extends keyof [`BuilderParameters`](client._internal_namespace.BuilderParameters.md) |
-
-## Table of contents
-
-### Properties
-
-- [payload](client._internal_namespace.CreateUserAction.md#payload)
-- [type](client._internal_namespace.CreateUserAction.md#type)
-
-## Properties
-
-### payload
-
-• **payload**: [`BuilderParameters`](client._internal_namespace.BuilderParameters.md)[`T`][``"parameters"``][``"payload"``]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:68](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L68)
-
-___
-
-### type
-
-• **type**: `T`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:67](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L67)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateUserActionES.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateUserActionES.md
deleted file mode 100644
index efc0b67c18a3e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.CreateUserActionES.md
+++ /dev/null
@@ -1,59 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / CreateUserActionES
-
-# Interface: CreateUserActionES
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).CreateUserActionES
-
-## Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`CreateUserActionES`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.CreateUserActionES.md#attributes)
-- [references](client._internal_namespace.CreateUserActionES.md#references)
-- [unsecuredSavedObjectsClient](client._internal_namespace.CreateUserActionES.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attributes
-
-• **attributes**: `T`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:71](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L71)
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:72](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L72)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.DecoratedError.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.DecoratedError.md
deleted file mode 100644
index 77ef99caaf16a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.DecoratedError.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / DecoratedError
-
-# Interface: DecoratedError
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).DecoratedError
-
-## Hierarchy
-
-- `Boom`
-
- ↳ **`DecoratedError`**
-
-## Table of contents
-
-### Properties
-
-- [[code]](client._internal_namespace.DecoratedError.md#[code])
-
-## Properties
-
-### [code]
-
-• `Optional` **[code]**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/errors.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ElasticsearchFeatureConfig.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ElasticsearchFeatureConfig.md
deleted file mode 100644
index 373ba63e5c659..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ElasticsearchFeatureConfig.md
+++ /dev/null
@@ -1,94 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ElasticsearchFeatureConfig
-
-# Interface: ElasticsearchFeatureConfig
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ElasticsearchFeatureConfig
-
-Interface for registering an Elasticsearch feature.
-Feature registration allows plugins to hide their applications based
-on configured cluster or index privileges.
-
-## Table of contents
-
-### Properties
-
-- [catalogue](client._internal_namespace.ElasticsearchFeatureConfig.md#catalogue)
-- [id](client._internal_namespace.ElasticsearchFeatureConfig.md#id)
-- [management](client._internal_namespace.ElasticsearchFeatureConfig.md#management)
-- [privileges](client._internal_namespace.ElasticsearchFeatureConfig.md#privileges)
-
-## Properties
-
-### catalogue
-
-• `Optional` **catalogue**: `string`[]
-
-If this feature includes a catalogue entry, you can specify them here to control visibility based on the current space.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/elasticsearch_feature.d.ts:34
-
-___
-
-### id
-
-• **id**: `string`
-
-Unique identifier for this feature.
-This identifier is also used when generating UI Capabilities.
-
-**`see`** UICapabilities
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/elasticsearch_feature.d.ts:15
-
-___
-
-### management
-
-• `Optional` **management**: `Object`
-
-Management sections associated with this feature.
-
-**`example`**
-```ts
- // Enables access to the "Advanced Settings" management page within the Kibana section
- management: {
- kibana: ['settings']
- }
-```
-
-#### Index signature
-
-▪ [sectionId: `string`]: `string`[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/elasticsearch_feature.d.ts:27
-
-___
-
-### privileges
-
-• **privileges**: [`FeatureElasticsearchPrivileges`](client._internal_namespace.FeatureElasticsearchPrivileges.md)[]
-
-Feature privilege definition. Specify one or more privileges which grant access to this feature.
-Users must satisfy all privileges in at least one of the defined sets of privileges in order to be granted access.
-
-**`example`**
-```ts
- [{
- requiredClusterPrivileges: ['monitor'],
- requiredIndexPrivileges: {
- ['metricbeat-*']: ['read', 'view_index_metadata']
- }
- }]
-```
-
-**`see`** FeatureElasticsearchPrivileges
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/elasticsearch_feature.d.ts:50
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.EmbeddableRegistryDefinition.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.EmbeddableRegistryDefinition.md
deleted file mode 100644
index 6a4eba88cc91d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.EmbeddableRegistryDefinition.md
+++ /dev/null
@@ -1,157 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / EmbeddableRegistryDefinition
-
-# Interface: EmbeddableRegistryDefinition
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).EmbeddableRegistryDefinition
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `P` | extends [`EmbeddableStateWithType`](../modules/client._internal_namespace.md#embeddablestatewithtype) = [`EmbeddableStateWithType`](../modules/client._internal_namespace.md#embeddablestatewithtype) |
-
-## Hierarchy
-
-- [`PersistableStateDefinition`](../modules/client._internal_namespace.md#persistablestatedefinition)<`P`\>
-
- ↳ **`EmbeddableRegistryDefinition`**
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.EmbeddableRegistryDefinition.md#id)
-- [migrations](client._internal_namespace.EmbeddableRegistryDefinition.md#migrations)
-
-### Methods
-
-- [extract](client._internal_namespace.EmbeddableRegistryDefinition.md#extract)
-- [inject](client._internal_namespace.EmbeddableRegistryDefinition.md#inject)
-- [telemetry](client._internal_namespace.EmbeddableRegistryDefinition.md#telemetry)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/plugins/embeddable/target/types/server/types.d.ts:13
-
-___
-
-### migrations
-
-• `Optional` **migrations**: [`MigrateFunctionsObject`](../modules/client._internal_namespace.md#migratefunctionsobject) \| [`GetMigrationFunctionObjectFn`](../modules/client._internal_namespace.md#getmigrationfunctionobjectfn)
-
-A list of migration functions, which migrate the persistable state
-serializable object to the next version. Migration functions should are
-keyed by the Kibana version using semver, where the version indicates to
-which version the state will be migrated to.
-
-#### Inherited from
-
-PersistableStateDefinition.migrations
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:75
-
-## Methods
-
-### extract
-
-▸ `Optional` **extract**(`state`): `Object`
-
-A function which receives state and should return the state with references
-extracted and an array of the extracted references. The default case could
-simply return the same state with an empty array of references.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `state` | `P` | The persistable state serializable state object. |
-
-#### Returns
-
-`Object`
-
-Persistable state object with references extracted and a list of
- references.
-
-| Name | Type |
-| :------ | :------ |
-| `references` | [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[] |
-| `state` | `P` |
-
-#### Inherited from
-
-PersistableStateDefinition.extract
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:65
-
-___
-
-### inject
-
-▸ `Optional` **inject**(`state`, `references`): `P`
-
-A function which receives state and a list of references and should return
-back the state with references injected. The default is an identity
-function.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `state` | `P` | The persistable state serializable state object. |
-| `references` | [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[] | List of saved object references. |
-
-#### Returns
-
-`P`
-
-Persistable state object with references injected.
-
-#### Inherited from
-
-PersistableStateDefinition.inject
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:55
-
-___
-
-### telemetry
-
-▸ `Optional` **telemetry**(`state`, `stats`): `Record`<`string`, `any`\>
-
-Function which reports telemetry information. This function is essentially
-a "reducer" - it receives the existing "stats" object and returns an
-updated version of the "stats" object.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `state` | `P` | The persistable state serializable state object. |
-| `stats` | `Record`<`string`, `any`\> | Stats object containing the stats which were already collected. This `stats` object shall not be mutated in-line. |
-
-#### Returns
-
-`Record`<`string`, `any`\>
-
-A new stats object augmented with new telemetry information.
-
-#### Inherited from
-
-PersistableStateDefinition.telemetry
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:45
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.EncryptedSavedObjectsClient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.EncryptedSavedObjectsClient.md
deleted file mode 100644
index fff1cd9a9e369..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.EncryptedSavedObjectsClient.md
+++ /dev/null
@@ -1,39 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / EncryptedSavedObjectsClient
-
-# Interface: EncryptedSavedObjectsClient
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).EncryptedSavedObjectsClient
-
-## Table of contents
-
-### Methods
-
-- [getDecryptedAsInternalUser](client._internal_namespace.EncryptedSavedObjectsClient.md#getdecryptedasinternaluser)
-
-## Methods
-
-### getDecryptedAsInternalUser
-
-▸ **getDecryptedAsInternalUser**<`T`\>(`type`, `id`, `options?`): `Promise`<[`SavedObject`](client._internal_namespace.SavedObject.md)<`T`\>\>
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `type` | `string` |
-| `id` | `string` |
-| `options?` | [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md) |
-
-#### Returns
-
-`Promise`<[`SavedObject`](client._internal_namespace.SavedObject.md)<`T`\>\>
-
-#### Defined in
-
-x-pack/plugins/encrypted_saved_objects/target/types/server/saved_objects/index.d.ts:18
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ExecuteOptions-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ExecuteOptions-1.md
deleted file mode 100644
index 4004d5c484793..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ExecuteOptions-1.md
+++ /dev/null
@@ -1,101 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ExecuteOptions
-
-# Interface: ExecuteOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ExecuteOptions
-
-## Hierarchy
-
-- `Pick`<[`ExecuteOptions`](client._internal_namespace.ExecuteOptions.md), ``"params"`` \| ``"source"``\>
-
- ↳ **`ExecuteOptions`**
-
-## Table of contents
-
-### Properties
-
-- [apiKey](client._internal_namespace.ExecuteOptions-1.md#apikey)
-- [executionId](client._internal_namespace.ExecuteOptions-1.md#executionid)
-- [id](client._internal_namespace.ExecuteOptions-1.md#id)
-- [params](client._internal_namespace.ExecuteOptions-1.md#params)
-- [relatedSavedObjects](client._internal_namespace.ExecuteOptions-1.md#relatedsavedobjects)
-- [source](client._internal_namespace.ExecuteOptions-1.md#source)
-- [spaceId](client._internal_namespace.ExecuteOptions-1.md#spaceid)
-
-## Properties
-
-### apiKey
-
-• **apiKey**: ``null`` \| `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/create_execute_function.d.ts:15
-
-___
-
-### executionId
-
-• **executionId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/create_execute_function.d.ts:16
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/create_execute_function.d.ts:13
-
-___
-
-### params
-
-• **params**: `Record`<`string`, `unknown`\>
-
-#### Inherited from
-
-Pick.params
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:28
-
-___
-
-### relatedSavedObjects
-
-• `Optional` **relatedSavedObjects**: `Readonly`<{ `namespace?`: `string` ; `typeId?`: `string` } & { `id`: `string` ; `type`: `string` }\>[]
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/create_execute_function.d.ts:17
-
-___
-
-### source
-
-• `Optional` **source**: [`ActionExecutionSource`](client._internal_namespace.ActionExecutionSource.md)<`unknown`\>
-
-#### Inherited from
-
-Pick.source
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:29
-
-___
-
-### spaceId
-
-• **spaceId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/create_execute_function.d.ts:14
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ExecuteOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ExecuteOptions.md
deleted file mode 100644
index fb808b1afbbee..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ExecuteOptions.md
+++ /dev/null
@@ -1,104 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ExecuteOptions
-
-# Interface: ExecuteOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ExecuteOptions
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Source` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [actionId](client._internal_namespace.ExecuteOptions.md#actionid)
-- [executionId](client._internal_namespace.ExecuteOptions.md#executionid)
-- [isEphemeral](client._internal_namespace.ExecuteOptions.md#isephemeral)
-- [params](client._internal_namespace.ExecuteOptions.md#params)
-- [relatedSavedObjects](client._internal_namespace.ExecuteOptions.md#relatedsavedobjects)
-- [request](client._internal_namespace.ExecuteOptions.md#request)
-- [source](client._internal_namespace.ExecuteOptions.md#source)
-- [taskInfo](client._internal_namespace.ExecuteOptions.md#taskinfo)
-
-## Properties
-
-### actionId
-
-• **actionId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:25
-
-___
-
-### executionId
-
-• `Optional` **executionId**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:31
-
-___
-
-### isEphemeral
-
-• `Optional` **isEphemeral**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:26
-
-___
-
-### params
-
-• **params**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:28
-
-___
-
-### relatedSavedObjects
-
-• `Optional` **relatedSavedObjects**: `Readonly`<{ `namespace?`: `string` ; `typeId?`: `string` } & { `id`: `string` ; `type`: `string` }\>[]
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:32
-
-___
-
-### request
-
-• **request**: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:27
-
-___
-
-### source
-
-• `Optional` **source**: [`ActionExecutionSource`](client._internal_namespace.ActionExecutionSource.md)<`Source`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:29
-
-___
-
-### taskInfo
-
-• `Optional` **taskInfo**: [`TaskInfo`](client._internal_namespace.TaskInfo.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:30
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureElasticsearchPrivileges.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureElasticsearchPrivileges.md
deleted file mode 100644
index bb462c5341233..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureElasticsearchPrivileges.md
+++ /dev/null
@@ -1,106 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FeatureElasticsearchPrivileges
-
-# Interface: FeatureElasticsearchPrivileges
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FeatureElasticsearchPrivileges
-
-Elasticsearch Feature privilege definition
-
-## Table of contents
-
-### Properties
-
-- [requiredClusterPrivileges](client._internal_namespace.FeatureElasticsearchPrivileges.md#requiredclusterprivileges)
-- [requiredIndexPrivileges](client._internal_namespace.FeatureElasticsearchPrivileges.md#requiredindexprivileges)
-- [requiredRoles](client._internal_namespace.FeatureElasticsearchPrivileges.md#requiredroles)
-- [ui](client._internal_namespace.FeatureElasticsearchPrivileges.md#ui)
-
-## Properties
-
-### requiredClusterPrivileges
-
-• **requiredClusterPrivileges**: `string`[]
-
-A set of Elasticsearch cluster privileges which are required for this feature to be enabled.
-See https://www.elastic.co/guide/en/elasticsearch/reference/current/security-privileges.html
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_elasticsearch_privileges.d.ts:10
-
-___
-
-### requiredIndexPrivileges
-
-• `Optional` **requiredIndexPrivileges**: `Object`
-
-A set of Elasticsearch index privileges which are required for this feature to be enabled, keyed on index name or pattern.
-See https://www.elastic.co/guide/en/elasticsearch/reference/current/security-privileges.html#privileges-list-indices
-
-**`example`**
-
-Requiring `read` access to `logstash-*` and `all` access to `foo-*`
-```ts
-feature.registerElasticsearchPrivilege({
- privileges: [{
- requiredIndexPrivileges: {
- ['logstash-*']: ['read'],
- ['foo-*]: ['all']
- }
- }]
-})
-```
-
-#### Index signature
-
-▪ [indexName: `string`]: `string`[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_elasticsearch_privileges.d.ts:30
-
-___
-
-### requiredRoles
-
-• `Optional` **requiredRoles**: `string`[]
-
-A set of Elasticsearch roles which are required for this feature to be enabled.
-
-**`deprecated`** do not rely on hard-coded role names.
-
-This is relied on by the reporting feature, and should be removed once reporting
-migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_elasticsearch_privileges.d.ts:41
-
-___
-
-### ui
-
-• **ui**: `string`[]
-
-A list of UI Capabilities that should be granted to users with this privilege.
-These capabilities will automatically be namespaces within your feature id.
-
-**`example`**
-```ts
- {
- ui: ['show', 'save']
- }
-
- This translates in the UI to the following (assuming a feature id of "foo"):
- import { uiCapabilities } from 'ui/capabilities';
-
- const canShowApp = uiCapabilities.foo.show;
- const canSave = uiCapabilities.foo.save;
-```
-Note: Since these are automatically namespaced, you are free to use generic names like "show" and "save".
-
-**`see`** UICapabilities
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_elasticsearch_privileges.d.ts:62
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureKibanaPrivileges.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureKibanaPrivileges.md
deleted file mode 100644
index caf57a8ff8987..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureKibanaPrivileges.md
+++ /dev/null
@@ -1,246 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FeatureKibanaPrivileges
-
-# Interface: FeatureKibanaPrivileges
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FeatureKibanaPrivileges
-
-Feature privilege definition
-
-## Table of contents
-
-### Properties
-
-- [alerting](client._internal_namespace.FeatureKibanaPrivileges.md#alerting)
-- [api](client._internal_namespace.FeatureKibanaPrivileges.md#api)
-- [app](client._internal_namespace.FeatureKibanaPrivileges.md#app)
-- [cases](client._internal_namespace.FeatureKibanaPrivileges.md#cases)
-- [catalogue](client._internal_namespace.FeatureKibanaPrivileges.md#catalogue)
-- [disabled](client._internal_namespace.FeatureKibanaPrivileges.md#disabled)
-- [excludeFromBasePrivileges](client._internal_namespace.FeatureKibanaPrivileges.md#excludefrombaseprivileges)
-- [management](client._internal_namespace.FeatureKibanaPrivileges.md#management)
-- [requireAllSpaces](client._internal_namespace.FeatureKibanaPrivileges.md#requireallspaces)
-- [savedObject](client._internal_namespace.FeatureKibanaPrivileges.md#savedobject)
-- [ui](client._internal_namespace.FeatureKibanaPrivileges.md#ui)
-
-## Properties
-
-### alerting
-
-• `Optional` **alerting**: `Object`
-
-If your feature requires access to specific Alert Types, then specify your access needs here.
-Include both Alert Types registered by the feature and external Alert Types such as built-in
-Alert Types and Alert Types provided by other features to which you wish to grant access.
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `alert?` | `Object` |
-| `alert.all?` | readonly `string`[] |
-| `alert.read?` | readonly `string`[] |
-| `rule?` | `Object` |
-| `rule.all?` | readonly `string`[] |
-| `rule.read?` | readonly `string`[] |
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:82
-
-___
-
-### api
-
-• `Optional` **api**: readonly `string`[]
-
-If your feature includes server-side APIs, you can tag those routes to secure access based on user permissions.
-
-**`example`**
-```ts
- // Configure your routes with a tag starting with the 'access:' prefix
- server.route({
- path: '/api/my-route',
- method: 'GET',
- handler: () => { ...},
- options: {
- tags: ['access:my_feature-admin']
- }
- });
-
- Then, specify the tags here (without the 'access:' prefix) which should be secured:
-
- {
- api: ['my_feature-admin']
- }
-```
-
-NOTE: It is important to name your tags in a way that will not collide with other plugins/features.
-A generic tag name like "access:read" could be used elsewhere, and access to that API endpoint would also
-extend to any routes you have also tagged with that name.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:64
-
-___
-
-### app
-
-• `Optional` **app**: readonly `string`[]
-
-If your feature exposes a client-side application (most of them do!), then you can control access to them here.
-
-**`example`**
-```ts
- {
- app: ['my-app', 'kibana']
- }
-```
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:76
-
-___
-
-### cases
-
-• `Optional` **cases**: `Object`
-
-If your feature requires access to specific owners of cases (aka plugins that have created cases), then specify your access needs here. The values here should
-be unique identifiers for the owners of cases you want access to.
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `all?` | readonly `string`[] | List of case owners which users should have full read/write access to when granted this privilege. **`example`** ```ts { all: ['securitySolution'] } ``` |
-| `read?` | readonly `string`[] | List of case owners which users should have read-only access to when granted this privilege. **`example`** ```ts { read: ['securitySolution'] } ``` |
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:132
-
-___
-
-### catalogue
-
-• `Optional` **catalogue**: readonly `string`[]
-
-If this feature includes a catalogue entry, you can specify them here to control visibility based on user permissions.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:37
-
-___
-
-### disabled
-
-• `Optional` **disabled**: `boolean`
-
-Whether or not this privilege should be hidden in the roles UI and disallowed on the API. Defaults to `false`.
-
-**`deprecated`**
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:18
-
-___
-
-### excludeFromBasePrivileges
-
-• `Optional` **excludeFromBasePrivileges**: `boolean`
-
-Whether or not this specific privilege should be excluded from the base privileges.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:8
-
-___
-
-### management
-
-• `Optional` **management**: `Object`
-
-If this feature includes management sections, you can specify them here to control visibility of those
-pages based on user privileges.
-
-**`example`**
-```ts
- // Enables access to the "Advanced Settings" management page within the Kibana section
- management: {
- kibana: ['settings']
- }
-```
-
-#### Index signature
-
-▪ [sectionId: `string`]: readonly `string`[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:31
-
-___
-
-### requireAllSpaces
-
-• `Optional` **requireAllSpaces**: `boolean`
-
-Whether or not this privilege should only be granted to `All Spaces *`. Should be used for features that do not
-support Spaces. Defaults to `false`.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:13
-
-___
-
-### savedObject
-
-• **savedObject**: `Object`
-
-If your feature requires access to specific saved objects, then specify your access needs here.
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `all` | readonly `string`[] | List of saved object types which users should have full read/write access to when granted this privilege. **`example`** ```ts { all: ['my-saved-object-type'] } ``` |
-| `read` | readonly `string`[] | List of saved object types which users should have read-only access to when granted this privilege. **`example`** ```ts { read: ['config'] } ``` |
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:157
-
-___
-
-### ui
-
-• **ui**: readonly `string`[]
-
-A list of UI Capabilities that should be granted to users with this privilege.
-These capabilities will automatically be namespaces within your feature id.
-
-**`example`**
-```ts
- {
- ui: ['show', 'save']
- }
-
- This translates in the UI to the following (assuming a feature id of "foo"):
- import { uiCapabilities } from 'ui/capabilities';
-
- const canShowApp = uiCapabilities.foo.show;
- const canSave = uiCapabilities.foo.save;
-```
-Note: Since these are automatically namespaced, you are free to use generic names like "show" and "save".
-
-**`see`** UICapabilities
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:199
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureUsageServiceSetup.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureUsageServiceSetup.md
deleted file mode 100644
index 77770e22b41e2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FeatureUsageServiceSetup.md
+++ /dev/null
@@ -1,34 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FeatureUsageServiceSetup
-
-# Interface: FeatureUsageServiceSetup
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FeatureUsageServiceSetup
-
-## Table of contents
-
-### Methods
-
-- [register](client._internal_namespace.FeatureUsageServiceSetup.md#register)
-
-## Methods
-
-### register
-
-▸ **register**(`featureName`, `licenseType`): `void`
-
-Register a feature to be able to notify of it's usages using the {@link FeatureUsageServiceStart | service start contract}.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `featureName` | `string` |
-| `licenseType` | ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"`` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/server/services/feature_usage_service.d.ts:7
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindActionResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindActionResult.md
deleted file mode 100644
index e7306b5d7b931..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindActionResult.md
+++ /dev/null
@@ -1,117 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FindActionResult
-
-# Interface: FindActionResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FindActionResult
-
-## Hierarchy
-
-- [`ActionResult`](client._internal_namespace.ActionResult.md)
-
- ↳ **`FindActionResult`**
-
-## Table of contents
-
-### Properties
-
-- [actionTypeId](client._internal_namespace.FindActionResult.md#actiontypeid)
-- [config](client._internal_namespace.FindActionResult.md#config)
-- [id](client._internal_namespace.FindActionResult.md#id)
-- [isMissingSecrets](client._internal_namespace.FindActionResult.md#ismissingsecrets)
-- [isPreconfigured](client._internal_namespace.FindActionResult.md#ispreconfigured)
-- [name](client._internal_namespace.FindActionResult.md#name)
-- [referencedByCount](client._internal_namespace.FindActionResult.md#referencedbycount)
-
-## Properties
-
-### actionTypeId
-
-• **actionTypeId**: `string`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[actionTypeId](client._internal_namespace.ActionResult.md#actiontypeid)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:50
-
-___
-
-### config
-
-• `Optional` **config**: [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig)
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[config](client._internal_namespace.ActionResult.md#config)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:53
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[id](client._internal_namespace.ActionResult.md#id)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:49
-
-___
-
-### isMissingSecrets
-
-• `Optional` **isMissingSecrets**: `boolean`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[isMissingSecrets](client._internal_namespace.ActionResult.md#ismissingsecrets)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:52
-
-___
-
-### isPreconfigured
-
-• **isPreconfigured**: `boolean`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[isPreconfigured](client._internal_namespace.ActionResult.md#ispreconfigured)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:54
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[name](client._internal_namespace.ActionResult.md#name)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:51
-
-___
-
-### referencedByCount
-
-• **referencedByCount**: `number`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:60
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCaseCommentsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCaseCommentsArgs.md
deleted file mode 100644
index a5b1689fc0e9b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCaseCommentsArgs.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FindCaseCommentsArgs
-
-# Interface: FindCaseCommentsArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FindCaseCommentsArgs
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.FindCaseCommentsArgs.md#id)
-- [options](client._internal_namespace.FindCaseCommentsArgs.md#options)
-- [unsecuredSavedObjectsClient](client._internal_namespace.FindCaseCommentsArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### id
-
-• **id**: `string` \| `string`[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:84](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L84)
-
-___
-
-### options
-
-• `Optional` **options**: [`SavedObjectFindOptionsKueryNode`](../modules/client._internal_namespace.md#savedobjectfindoptionskuerynode)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:85](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L85)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:83](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L83)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCaseConfigureArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCaseConfigureArgs.md
deleted file mode 100644
index 5e3635fe0c3ec..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCaseConfigureArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FindCaseConfigureArgs
-
-# Interface: FindCaseConfigureArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FindCaseConfigureArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs.md)
-
- ↳ **`FindCaseConfigureArgs`**
-
-## Table of contents
-
-### Properties
-
-- [options](client._internal_namespace.FindCaseConfigureArgs.md#options)
-- [unsecuredSavedObjectsClient](client._internal_namespace.FindCaseConfigureArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### options
-
-• `Optional` **options**: [`SavedObjectFindOptionsKueryNode`](../modules/client._internal_namespace.md#savedobjectfindoptionskuerynode)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:37](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L37)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L30)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCasesArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCasesArgs.md
deleted file mode 100644
index 0ac807ecaadac..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCasesArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FindCasesArgs
-
-# Interface: FindCasesArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FindCasesArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`FindCasesArgs`**
-
-## Table of contents
-
-### Properties
-
-- [options](client._internal_namespace.FindCasesArgs.md#options)
-- [unsecuredSavedObjectsClient](client._internal_namespace.FindCasesArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### options
-
-• `Optional` **options**: [`SavedObjectFindOptionsKueryNode`](../modules/client._internal_namespace.md#savedobjectfindoptionskuerynode)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:89](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L89)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCommentsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCommentsArgs.md
deleted file mode 100644
index b88437b3e33a8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindCommentsArgs.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FindCommentsArgs
-
-# Interface: FindCommentsArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FindCommentsArgs
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.FindCommentsArgs.md#id)
-- [options](client._internal_namespace.FindCommentsArgs.md#options)
-- [unsecuredSavedObjectsClient](client._internal_namespace.FindCommentsArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### id
-
-• **id**: `string` \| `string`[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:78](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L78)
-
-___
-
-### options
-
-• `Optional` **options**: [`SavedObjectFindOptionsKueryNode`](../modules/client._internal_namespace.md#savedobjectfindoptionskuerynode)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L79)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:77](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L77)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindConnectorMappingsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindConnectorMappingsArgs.md
deleted file mode 100644
index 5f70d4ae539e8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.FindConnectorMappingsArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / FindConnectorMappingsArgs
-
-# Interface: FindConnectorMappingsArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).FindConnectorMappingsArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-2.md)
-
- ↳ **`FindConnectorMappingsArgs`**
-
-## Table of contents
-
-### Properties
-
-- [options](client._internal_namespace.FindConnectorMappingsArgs.md#options)
-- [unsecuredSavedObjectsClient](client._internal_namespace.FindConnectorMappingsArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### options
-
-• `Optional` **options**: [`SavedObjectFindOptionsKueryNode`](../modules/client._internal_namespace.md#savedobjectfindoptionskuerynode)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:18](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L18)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-2.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-2.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L15)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetAllSpacesOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetAllSpacesOptions.md
deleted file mode 100644
index 905d61791cb2e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetAllSpacesOptions.md
+++ /dev/null
@@ -1,44 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetAllSpacesOptions
-
-# Interface: GetAllSpacesOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetAllSpacesOptions
-
-Controls how spaces are retrieved.
-
-## Table of contents
-
-### Properties
-
-- [includeAuthorizedPurposes](client._internal_namespace.GetAllSpacesOptions.md#includeauthorizedpurposes)
-- [purpose](client._internal_namespace.GetAllSpacesOptions.md#purpose)
-
-## Properties
-
-### includeAuthorizedPurposes
-
-• `Optional` **includeAuthorizedPurposes**: `boolean`
-
-Set to true to return a set of flags indicating which purposes the user is authorized for.
-
-**`see`** GetAllSpacesPurpose
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:65
-
-___
-
-### purpose
-
-• `Optional` **purpose**: [`GetAllSpacesPurpose`](../modules/client._internal_namespace.md#getallspacespurpose)
-
-An optional purpose describing how the set of spaces will be used.
-The default purpose (`any`) will retrieve all spaces the user is authorized to see,
-whereas a more specific purpose will retrieve all spaces the user is authorized to perform a specific action within.
-
-**`see`** GetAllSpacesPurpose
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:59
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetAttachmentArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetAttachmentArgs.md
deleted file mode 100644
index 39f6f288c84c5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetAttachmentArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetAttachmentArgs
-
-# Interface: GetAttachmentArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetAttachmentArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`GetAttachmentArgs`**
-
-## Table of contents
-
-### Properties
-
-- [attachmentId](client._internal_namespace.GetAttachmentArgs.md#attachmentid)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetAttachmentArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attachmentId
-
-• **attachmentId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:44](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L44)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseArgs.md
deleted file mode 100644
index 5cca6876f1821..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetCaseArgs
-
-# Interface: GetCaseArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetCaseArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`GetCaseArgs`**
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.GetCaseArgs.md#id)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetCaseArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:69](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L69)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseConfigureArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseConfigureArgs.md
deleted file mode 100644
index 2aa37a7bf78a9..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseConfigureArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetCaseConfigureArgs
-
-# Interface: GetCaseConfigureArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetCaseConfigureArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs.md)
-
- ↳ **`GetCaseConfigureArgs`**
-
-## Table of contents
-
-### Properties
-
-- [configurationId](client._internal_namespace.GetCaseConfigureArgs.md#configurationid)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetCaseConfigureArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### configurationId
-
-• **configurationId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:34](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L34)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L30)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseIdsByAlertIdArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseIdsByAlertIdArgs.md
deleted file mode 100644
index 267aa4fe7100a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseIdsByAlertIdArgs.md
+++ /dev/null
@@ -1,53 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetCaseIdsByAlertIdArgs
-
-# Interface: GetCaseIdsByAlertIdArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetCaseIdsByAlertIdArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`GetCaseIdsByAlertIdArgs`**
-
-## Table of contents
-
-### Properties
-
-- [alertId](client._internal_namespace.GetCaseIdsByAlertIdArgs.md#alertid)
-- [filter](client._internal_namespace.GetCaseIdsByAlertIdArgs.md#filter)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetCaseIdsByAlertIdArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### alertId
-
-• **alertId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:59](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L59)
-
-___
-
-### filter
-
-• `Optional` **filter**: `KueryNode`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:60](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L60)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseUserActionArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseUserActionArgs.md
deleted file mode 100644
index 08edac1f82b2c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCaseUserActionArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetCaseUserActionArgs
-
-# Interface: GetCaseUserActionArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetCaseUserActionArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`GetCaseUserActionArgs`**
-
-## Table of contents
-
-### Properties
-
-- [caseId](client._internal_namespace.GetCaseUserActionArgs.md#caseid)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetCaseUserActionArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:58](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L58)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCasesArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCasesArgs.md
deleted file mode 100644
index d5e802e19b9c0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetCasesArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetCasesArgs
-
-# Interface: GetCasesArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetCasesArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`GetCasesArgs`**
-
-## Table of contents
-
-### Properties
-
-- [caseIds](client._internal_namespace.GetCasesArgs.md#caseids)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetCasesArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### caseIds
-
-• **caseIds**: `string`[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:73](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L73)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetReportersArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetReportersArgs.md
deleted file mode 100644
index af1116f4c3ddb..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetReportersArgs.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetReportersArgs
-
-# Interface: GetReportersArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetReportersArgs
-
-## Table of contents
-
-### Properties
-
-- [filter](client._internal_namespace.GetReportersArgs.md#filter)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetReportersArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### filter
-
-• `Optional` **filter**: `KueryNode`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:134](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L134)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:133](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L133)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetSpaceResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetSpaceResult.md
deleted file mode 100644
index 8e4162988105e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetSpaceResult.md
+++ /dev/null
@@ -1,176 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetSpaceResult
-
-# Interface: GetSpaceResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetSpaceResult
-
-Response format when querying for spaces.
-
-## Hierarchy
-
-- [`Space`](client._internal_namespace.Space.md)
-
- ↳ **`GetSpaceResult`**
-
-## Table of contents
-
-### Properties
-
-- [\_reserved](client._internal_namespace.GetSpaceResult.md#_reserved)
-- [authorizedPurposes](client._internal_namespace.GetSpaceResult.md#authorizedpurposes)
-- [color](client._internal_namespace.GetSpaceResult.md#color)
-- [description](client._internal_namespace.GetSpaceResult.md#description)
-- [disabledFeatures](client._internal_namespace.GetSpaceResult.md#disabledfeatures)
-- [id](client._internal_namespace.GetSpaceResult.md#id)
-- [imageUrl](client._internal_namespace.GetSpaceResult.md#imageurl)
-- [initials](client._internal_namespace.GetSpaceResult.md#initials)
-- [name](client._internal_namespace.GetSpaceResult.md#name)
-
-## Properties
-
-### \_reserved
-
-• `Optional` `Private` **\_reserved**: `boolean`
-
-Indicates that this space is reserved (system controlled).
-Reserved spaces cannot be created or deleted by end-users.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[_reserved](client._internal_namespace.Space.md#_reserved)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:46
-
-___
-
-### authorizedPurposes
-
-• `Optional` **authorizedPurposes**: `Record`<[`GetAllSpacesPurpose`](../modules/client._internal_namespace.md#getallspacespurpose), `boolean`\>
-
-A set of flags indicating which purposes the user is authorized for.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:82
-
-___
-
-### color
-
-• `Optional` **color**: `string`
-
-Optional color (hex code) for this space.
-If neither `color` nor `imageUrl` is specified, then a color will be automatically generated.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[color](client._internal_namespace.Space.md#color)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:24
-
-___
-
-### description
-
-• `Optional` **description**: `string`
-
-Optional description for this space.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[description](client._internal_namespace.Space.md#description)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:19
-
-___
-
-### disabledFeatures
-
-• **disabledFeatures**: `string`[]
-
-The set of feature ids that should be hidden within this space.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[disabledFeatures](client._internal_namespace.Space.md#disabledfeatures)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:40
-
-___
-
-### id
-
-• **id**: `string`
-
-The unique identifier for this space.
-The id becomes part of the "URL Identifier" of the space.
-
-Example: an id of `marketing` would result in the URL identifier of `/s/marketing`.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[id](client._internal_namespace.Space.md#id)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:11
-
-___
-
-### imageUrl
-
-• `Optional` **imageUrl**: `string`
-
-Optional base-64 encoded data image url to show as this space's avatar.
-This setting takes precedence over any configured `color` or `initials`.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[imageUrl](client._internal_namespace.Space.md#imageurl)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:36
-
-___
-
-### initials
-
-• `Optional` **initials**: `string`
-
-Optional display initials for this space's avatar. Supports a maximum of 2 characters.
-If initials are not provided, then they will be derived from the space name automatically.
-
-Initials are not displayed if an `imageUrl` has been specified.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[initials](client._internal_namespace.Space.md#initials)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:31
-
-___
-
-### name
-
-• **name**: `string`
-
-Display name for this space.
-
-#### Inherited from
-
-[Space](client._internal_namespace.Space.md).[name](client._internal_namespace.Space.md#name)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:15
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetTagsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetTagsArgs.md
deleted file mode 100644
index 31088513fe67f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetTagsArgs.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetTagsArgs
-
-# Interface: GetTagsArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetTagsArgs
-
-## Table of contents
-
-### Properties
-
-- [filter](client._internal_namespace.GetTagsArgs.md#filter)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetTagsArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### filter
-
-• `Optional` **filter**: `KueryNode`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:129](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L129)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:128](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L128)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetUserActionItemByDifference.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetUserActionItemByDifference.md
deleted file mode 100644
index 50f9ae9a6fc34..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetUserActionItemByDifference.md
+++ /dev/null
@@ -1,162 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetUserActionItemByDifference
-
-# Interface: GetUserActionItemByDifference
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetUserActionItemByDifference
-
-## Hierarchy
-
-- [`CommonUserActionArgs`](../modules/client._internal_namespace.md#commonuseractionargs)
-
- ↳ **`GetUserActionItemByDifference`**
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.GetUserActionItemByDifference.md#action)
-- [attachmentId](client._internal_namespace.GetUserActionItemByDifference.md#attachmentid)
-- [caseId](client._internal_namespace.GetUserActionItemByDifference.md#caseid)
-- [connectorId](client._internal_namespace.GetUserActionItemByDifference.md#connectorid)
-- [field](client._internal_namespace.GetUserActionItemByDifference.md#field)
-- [newValue](client._internal_namespace.GetUserActionItemByDifference.md#newvalue)
-- [originalValue](client._internal_namespace.GetUserActionItemByDifference.md#originalvalue)
-- [owner](client._internal_namespace.GetUserActionItemByDifference.md#owner)
-- [unsecuredSavedObjectsClient](client._internal_namespace.GetUserActionItemByDifference.md#unsecuredsavedobjectsclient)
-- [user](client._internal_namespace.GetUserActionItemByDifference.md#user)
-
-## Properties
-
-### action
-
-• `Optional` **action**: ``"add"`` \| ``"create"`` \| ``"delete"`` \| ``"update"`` \| ``"push_to_service"``
-
-#### Inherited from
-
-CommonUserActionArgs.action
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:80](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L80)
-
-___
-
-### attachmentId
-
-• `Optional` **attachmentId**: `string`
-
-#### Inherited from
-
-CommonUserActionArgs.attachmentId
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:78](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L78)
-
-___
-
-### caseId
-
-• **caseId**: `string`
-
-#### Inherited from
-
-CommonUserActionArgs.caseId
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:76](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L76)
-
-___
-
-### connectorId
-
-• `Optional` **connectorId**: `string`
-
-#### Inherited from
-
-CommonUserActionArgs.connectorId
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L79)
-
-___
-
-### field
-
-• **field**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:83](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L83)
-
-___
-
-### newValue
-
-• **newValue**: `unknown`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:85](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L85)
-
-___
-
-### originalValue
-
-• **originalValue**: `unknown`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:84](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L84)
-
-___
-
-### owner
-
-• **owner**: `string`
-
-#### Inherited from
-
-CommonUserActionArgs.owner
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:77](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L77)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-CommonUserActionArgs.unsecuredSavedObjectsClient
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
-
-___
-
-### user
-
-• **user**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Inherited from
-
-CommonUserActionArgs.user
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:75](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L75)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetUserArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetUserArgs.md
deleted file mode 100644
index d4913925ff206..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.GetUserArgs.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / GetUserArgs
-
-# Interface: GetUserArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).GetUserArgs
-
-## Table of contents
-
-### Properties
-
-- [request](client._internal_namespace.GetUserArgs.md#request)
-
-## Properties
-
-### request
-
-• **request**: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:110](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L110)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IEventLogger.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IEventLogger.md
deleted file mode 100644
index a1b44e51859d4..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IEventLogger.md
+++ /dev/null
@@ -1,73 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IEventLogger
-
-# Interface: IEventLogger
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IEventLogger
-
-## Table of contents
-
-### Methods
-
-- [logEvent](client._internal_namespace.IEventLogger.md#logevent)
-- [startTiming](client._internal_namespace.IEventLogger.md#starttiming)
-- [stopTiming](client._internal_namespace.IEventLogger.md#stoptiming)
-
-## Methods
-
-### logEvent
-
-▸ **logEvent**(`properties`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `properties` | [`IEvent`](../modules/client._internal_namespace.md#ievent) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/server/types.d.ts:34
-
-___
-
-### startTiming
-
-▸ **startTiming**(`event`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `event` | [`IEvent`](../modules/client._internal_namespace.md#ievent) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/server/types.d.ts:35
-
-___
-
-### stopTiming
-
-▸ **stopTiming**(`event`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `event` | [`IEvent`](../modules/client._internal_namespace.md#ievent) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/server/types.d.ts:36
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IKibanaSocket.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IKibanaSocket.md
deleted file mode 100644
index cc2ea54f3975a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IKibanaSocket.md
+++ /dev/null
@@ -1,150 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IKibanaSocket
-
-# Interface: IKibanaSocket
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IKibanaSocket
-
-A tiny abstraction for TCP socket.
-
-## Table of contents
-
-### Properties
-
-- [authorizationError](client._internal_namespace.IKibanaSocket.md#authorizationerror)
-- [authorized](client._internal_namespace.IKibanaSocket.md#authorized)
-
-### Methods
-
-- [getPeerCertificate](client._internal_namespace.IKibanaSocket.md#getpeercertificate)
-- [getProtocol](client._internal_namespace.IKibanaSocket.md#getprotocol)
-- [renegotiate](client._internal_namespace.IKibanaSocket.md#renegotiate)
-
-## Properties
-
-### authorizationError
-
-• `Optional` `Readonly` **authorizationError**: `Error`
-
-The reason why the peer's certificate has not been verified. This property becomes available
-only when `authorized` is `false`.
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:45
-
-___
-
-### authorized
-
-• `Optional` `Readonly` **authorized**: `boolean`
-
-Indicates whether or not the peer certificate was signed by one of the specified CAs. When TLS
-isn't used the value is `undefined`.
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:40
-
-## Methods
-
-### getPeerCertificate
-
-▸ **getPeerCertificate**(`detailed`): ``null`` \| `DetailedPeerCertificate`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `detailed` | ``true`` |
-
-#### Returns
-
-``null`` \| `DetailedPeerCertificate`
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:9
-
-▸ **getPeerCertificate**(`detailed`): ``null`` \| `PeerCertificate`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `detailed` | ``false`` |
-
-#### Returns
-
-``null`` \| `PeerCertificate`
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:10
-
-▸ **getPeerCertificate**(`detailed?`): ``null`` \| `DetailedPeerCertificate` \| `PeerCertificate`
-
-Returns an object representing the peer's certificate.
-The returned object has some properties corresponding to the field of the certificate.
-If detailed argument is true the full chain with issuer property will be returned,
-if false only the top certificate without issuer property.
-If the peer does not provide a certificate, it returns null.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `detailed?` | `boolean` | If true; the full chain with issuer property will be returned. |
-
-#### Returns
-
-``null`` \| `DetailedPeerCertificate` \| `PeerCertificate`
-
-An object representing the peer's certificate.
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:20
-
-___
-
-### getProtocol
-
-▸ **getProtocol**(): ``null`` \| `string`
-
-Returns a string containing the negotiated SSL/TLS protocol version of the current connection. The value 'unknown' will be returned for
-connected sockets that have not completed the handshaking process. The value null will be returned for server sockets or disconnected
-client sockets. See https://www.openssl.org/docs/man1.0.2/ssl/SSL_get_version.html for more information.
-
-#### Returns
-
-``null`` \| `string`
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:26
-
-___
-
-### renegotiate
-
-▸ **renegotiate**(`options`): `Promise`<`void`\>
-
-Renegotiates a connection to obtain the peer's certificate. This cannot be used when the protocol version is TLSv1.3.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `options` | `Object` | The options may contain the following fields: rejectUnauthorized, requestCert (See tls.createServer() for details). |
-| `options.rejectUnauthorized?` | `boolean` | - |
-| `options.requestCert?` | `boolean` | - |
-
-#### Returns
-
-`Promise`<`void`\>
-
-A Promise that will be resolved if renegotiation succeeded, or will be rejected if renegotiation failed.
-
-#### Defined in
-
-src/core/target/types/server/http/router/socket.d.ts:32
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ILicense.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ILicense.md
deleted file mode 100644
index 8449411b85e42..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ILicense.md
+++ /dev/null
@@ -1,236 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ILicense
-
-# Interface: ILicense
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ILicense
-
-## Table of contents
-
-### Properties
-
-- [error](client._internal_namespace.ILicense.md#error)
-- [expiryDateInMillis](client._internal_namespace.ILicense.md#expirydateinmillis)
-- [isActive](client._internal_namespace.ILicense.md#isactive)
-- [isAvailable](client._internal_namespace.ILicense.md#isavailable)
-- [mode](client._internal_namespace.ILicense.md#mode)
-- [signature](client._internal_namespace.ILicense.md#signature)
-- [status](client._internal_namespace.ILicense.md#status)
-- [type](client._internal_namespace.ILicense.md#type)
-- [uid](client._internal_namespace.ILicense.md#uid)
-
-### Methods
-
-- [check](client._internal_namespace.ILicense.md#check)
-- [getFeature](client._internal_namespace.ILicense.md#getfeature)
-- [getUnavailableReason](client._internal_namespace.ILicense.md#getunavailablereason)
-- [hasAtLeast](client._internal_namespace.ILicense.md#hasatleast)
-- [toJSON](client._internal_namespace.ILicense.md#tojson)
-
-## Properties
-
-### error
-
-• `Optional` **error**: `string`
-
-A potential error denoting the failure of the license from being retrieved.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:119
-
-___
-
-### expiryDateInMillis
-
-• `Optional` **expiryDateInMillis**: `number`
-
-Unix epoch of the expiration date of the license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:94
-
-___
-
-### isActive
-
-• **isActive**: `boolean`
-
-Determine if the status of the license is active.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:90
-
-___
-
-### isAvailable
-
-• **isAvailable**: `boolean`
-
-Determine if the license container has information.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:111
-
-___
-
-### mode
-
-• `Optional` **mode**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-The license type, being usually one of basic, standard, gold, platinum, or trial.
-
-**`deprecated`** use 'type' instead.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:103
-
-___
-
-### signature
-
-• **signature**: `string`
-
-Signature of the license content.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:107
-
-___
-
-### status
-
-• `Optional` **status**: [`LicenseStatus`](../modules/client._internal_namespace.md#licensestatus)
-
-The validity status of the license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:86
-
-___
-
-### type
-
-• `Optional` **type**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-The license type, being usually one of basic, standard, gold, platinum, or trial.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:98
-
-___
-
-### uid
-
-• `Optional` **uid**: `string`
-
-UID for license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:82
-
-## Methods
-
-### check
-
-▸ **check**(`pluginName`, `minimumLicenseRequired`): [`LicenseCheck`](client._internal_namespace.LicenseCheck.md)
-
-For a given plugin and license type, receive information about the status of the license.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `pluginName` | `string` | the name of the plugin |
-| `minimumLicenseRequired` | ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"`` | the minimum valid license for operating the given plugin |
-
-#### Returns
-
-[`LicenseCheck`](client._internal_namespace.LicenseCheck.md)
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:134
-
-___
-
-### getFeature
-
-▸ **getFeature**(`name`): [`LicenseFeature`](client._internal_namespace.LicenseFeature.md)
-
-A specific API for interacting with the specific features of the license.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `name` | `string` | the name of the feature to interact with |
-
-#### Returns
-
-[`LicenseFeature`](client._internal_namespace.LicenseFeature.md)
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:139
-
-___
-
-### getUnavailableReason
-
-▸ **getUnavailableReason**(): `undefined` \| `string`
-
-If the license is not available, provides a string or Error containing the reason.
-
-#### Returns
-
-`undefined` \| `string`
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:123
-
-___
-
-### hasAtLeast
-
-▸ **hasAtLeast**(`minimumLicenseRequired`): `boolean`
-
-Determine if license type >= minimal required license type.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `minimumLicenseRequired` | ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"`` | the minimum valid license required for the given feature |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:128
-
-___
-
-### toJSON
-
-▸ **toJSON**(): [`PublicLicenseJSON`](client._internal_namespace.PublicLicenseJSON.md)
-
-Returns
-
-#### Returns
-
-[`PublicLicenseJSON`](client._internal_namespace.PublicLicenseJSON.md)
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:115
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md
deleted file mode 100644
index 17a5e67c8b2b6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md
+++ /dev/null
@@ -1,61 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ISavedObjectsPointInTimeFinder
-
-# Interface: ISavedObjectsPointInTimeFinder
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ISavedObjectsPointInTimeFinder
-
-## Type parameters
-
-| Name |
-| :------ |
-| `T` |
-| `A` |
-
-## Table of contents
-
-### Methods
-
-- [close](client._internal_namespace.ISavedObjectsPointInTimeFinder.md#close)
-- [find](client._internal_namespace.ISavedObjectsPointInTimeFinder.md#find)
-
-## Methods
-
-### close
-
-▸ **close**(): `Promise`<`void`\>
-
-Closes the Point-In-Time associated with this finder instance.
-
-Once you have retrieved all of the results you need, it is recommended
-to call `close()` to clean up the PIT and prevent Elasticsearch from
-consuming resources unnecessarily. This is only required if you are
-done iterating and have not yet paged through all of the results: the
-PIT will automatically be closed for you once you reach the last page
-of results, or if the underlying call to `find` fails for any reason.
-
-#### Returns
-
-`Promise`<`void`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/point_in_time_finder.d.ts:43
-
-___
-
-### find
-
-▸ **find**(): `AsyncGenerator`<[`SavedObjectsFindResponse`](client._internal_namespace.SavedObjectsFindResponse.md)<`T`, `A`\>, `any`, `unknown`\>
-
-An async generator which wraps calls to `savedObjectsClient.find` and
-iterates over multiple pages of results using `_pit` and `search_after`.
-This will open a new Point-In-Time (PIT), and continue paging until a set
-of results is received that's smaller than the designated `perPage` size.
-
-#### Returns
-
-`AsyncGenerator`<[`SavedObjectsFindResponse`](client._internal_namespace.SavedObjectsFindResponse.md)<`T`, `A`\>, `any`, `unknown`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/point_in_time_finder.d.ts:32
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IScopedClusterClient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IScopedClusterClient.md
deleted file mode 100644
index 47f8263232290..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IScopedClusterClient.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IScopedClusterClient
-
-# Interface: IScopedClusterClient
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IScopedClusterClient
-
-Serves the same purpose as the normal {@link IClusterClient | cluster client} but exposes
-an additional `asCurrentUser` method that doesn't use credentials of the Kibana internal
-user (as `asInternalUser` does) to request Elasticsearch API, but rather passes HTTP headers
-extracted from the current user request to the API instead.
-
-## Table of contents
-
-### Properties
-
-- [asCurrentUser](client._internal_namespace.IScopedClusterClient.md#ascurrentuser)
-- [asInternalUser](client._internal_namespace.IScopedClusterClient.md#asinternaluser)
-
-## Properties
-
-### asCurrentUser
-
-• `Readonly` **asCurrentUser**: [`ElasticsearchClient`](../modules/client._internal_namespace.md#elasticsearchclient)
-
-A [client](../modules/client._internal_namespace.md#elasticsearchclient) to be used to query the elasticsearch cluster
-on behalf of the user that initiated the request to the Kibana server.
-
-#### Defined in
-
-src/core/target/types/server/elasticsearch/client/scoped_cluster_client.d.ts:20
-
-___
-
-### asInternalUser
-
-• `Readonly` **asInternalUser**: [`ElasticsearchClient`](../modules/client._internal_namespace.md#elasticsearchclient)
-
-A [client](../modules/client._internal_namespace.md#elasticsearchclient) to be used to query the elasticsearch cluster
-on behalf of the internal Kibana user.
-
-#### Defined in
-
-src/core/target/types/server/elasticsearch/client/scoped_cluster_client.d.ts:15
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ISpacesClient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ISpacesClient.md
deleted file mode 100644
index 5b7aab2435b5a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ISpacesClient.md
+++ /dev/null
@@ -1,151 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ISpacesClient
-
-# Interface: ISpacesClient
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ISpacesClient
-
-Client interface for interacting with spaces.
-
-## Table of contents
-
-### Methods
-
-- [create](client._internal_namespace.ISpacesClient.md#create)
-- [delete](client._internal_namespace.ISpacesClient.md#delete)
-- [disableLegacyUrlAliases](client._internal_namespace.ISpacesClient.md#disablelegacyurlaliases)
-- [get](client._internal_namespace.ISpacesClient.md#get)
-- [getAll](client._internal_namespace.ISpacesClient.md#getall)
-- [update](client._internal_namespace.ISpacesClient.md#update)
-
-## Methods
-
-### create
-
-▸ **create**(`space`): `Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-Creates a space.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `space` | [`Space`](client._internal_namespace.Space.md) | the space to create. |
-
-#### Returns
-
-`Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_client/spaces_client.d.ts:22
-
-___
-
-### delete
-
-▸ **delete**(`id`): `Promise`<`void`\>
-
-Deletes a space, and all saved objects belonging to that space.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `id` | `string` | the id of the space to delete. |
-
-#### Returns
-
-`Promise`<`void`\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_client/spaces_client.d.ts:33
-
-___
-
-### disableLegacyUrlAliases
-
-▸ **disableLegacyUrlAliases**(`aliases`): `Promise`<`void`\>
-
-Disables the specified legacy URL aliases.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `aliases` | [`LegacyUrlAliasTarget`](client._internal_namespace.LegacyUrlAliasTarget.md)[] | the aliases to disable. |
-
-#### Returns
-
-`Promise`<`void`\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_client/spaces_client.d.ts:38
-
-___
-
-### get
-
-▸ **get**(`id`): `Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-Retrieve a space by its id.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `id` | `string` | the space id. |
-
-#### Returns
-
-`Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_client/spaces_client.d.ts:17
-
-___
-
-### getAll
-
-▸ **getAll**(`options?`): `Promise`<[`GetSpaceResult`](client._internal_namespace.GetSpaceResult.md)[]\>
-
-Retrieve all available spaces.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `options?` | [`GetAllSpacesOptions`](client._internal_namespace.GetAllSpacesOptions.md) | controls which spaces are retrieved. |
-
-#### Returns
-
-`Promise`<[`GetSpaceResult`](client._internal_namespace.GetSpaceResult.md)[]\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_client/spaces_client.d.ts:12
-
-___
-
-### update
-
-▸ **update**(`id`, `space`): `Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-Updates a space.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `id` | `string` | the id of the space to update. |
-| `space` | [`Space`](client._internal_namespace.Space.md) | the updated space. |
-
-#### Returns
-
-`Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_client/spaces_client.d.ts:28
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IUsageCounter.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IUsageCounter.md
deleted file mode 100644
index 9ed76ff78e51b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IUsageCounter.md
+++ /dev/null
@@ -1,37 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IUsageCounter
-
-# Interface: IUsageCounter
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IUsageCounter
-
-Usage Counter allows to keep track of any events that occur.
-By calling [IUsageCounter.incrementCounter](client._internal_namespace.IUsageCounter.md#incrementcounter) devs can notify this
-API whenever the event happens.
-
-## Table of contents
-
-### Methods
-
-- [incrementCounter](client._internal_namespace.IUsageCounter.md#incrementcounter)
-
-## Methods
-
-### incrementCounter
-
-▸ **incrementCounter**(`params`): `void`
-
-Notifies the counter about a new event happening so it can increase the count internally.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `params` | [`IncrementCounterParams`](client._internal_namespace.IncrementCounterParams.md) | [IncrementCounterParams](client._internal_namespace.IncrementCounterParams.md) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/plugins/usage_collection/target/types/server/usage_counters/usage_counter.d.ts:33
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IncrementCounterParams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IncrementCounterParams.md
deleted file mode 100644
index 0c79f0d867cdc..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IncrementCounterParams.md
+++ /dev/null
@@ -1,51 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IncrementCounterParams
-
-# Interface: IncrementCounterParams
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IncrementCounterParams
-
-Details about the counter to be incremented
-
-## Table of contents
-
-### Properties
-
-- [counterName](client._internal_namespace.IncrementCounterParams.md#countername)
-- [counterType](client._internal_namespace.IncrementCounterParams.md#countertype)
-- [incrementBy](client._internal_namespace.IncrementCounterParams.md#incrementby)
-
-## Properties
-
-### counterName
-
-• **counterName**: `string`
-
-The name of the counter
-
-#### Defined in
-
-src/plugins/usage_collection/target/types/server/usage_counters/usage_counter.d.ts:17
-
-___
-
-### counterType
-
-• `Optional` **counterType**: `string`
-
-The counter type ("count" by default)
-
-#### Defined in
-
-src/plugins/usage_collection/target/types/server/usage_counters/usage_counter.d.ts:19
-
-___
-
-### incrementBy
-
-• `Optional` **incrementBy**: `number`
-
-Increment the counter by this number (1 if not specified)
-
-#### Defined in
-
-src/plugins/usage_collection/target/types/server/usage_counters/usage_counter.d.ts:21
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IndexMapping.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IndexMapping.md
deleted file mode 100644
index 71cfddb7c8981..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IndexMapping.md
+++ /dev/null
@@ -1,45 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IndexMapping
-
-# Interface: IndexMapping
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IndexMapping
-
-**`internal`**
-
-## Table of contents
-
-### Properties
-
-- [\_meta](client._internal_namespace.IndexMapping.md#_meta)
-- [dynamic](client._internal_namespace.IndexMapping.md#dynamic)
-- [properties](client._internal_namespace.IndexMapping.md#properties)
-
-## Properties
-
-### \_meta
-
-• `Optional` **\_meta**: [`IndexMappingMeta`](client._internal_namespace.IndexMappingMeta.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:104
-
-___
-
-### dynamic
-
-• `Optional` **dynamic**: `boolean` \| ``"strict"``
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:102
-
-___
-
-### properties
-
-• **properties**: [`SavedObjectsMappingProperties`](client._internal_namespace.SavedObjectsMappingProperties.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:103
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IndexMappingMeta.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IndexMappingMeta.md
deleted file mode 100644
index de9e76ae00099..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IndexMappingMeta.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IndexMappingMeta
-
-# Interface: IndexMappingMeta
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IndexMappingMeta
-
-**`internal`**
-
-## Table of contents
-
-### Properties
-
-- [migrationMappingPropertyHashes](client._internal_namespace.IndexMappingMeta.md#migrationmappingpropertyhashes)
-
-## Properties
-
-### migrationMappingPropertyHashes
-
-• `Optional` **migrationMappingPropertyHashes**: `Object`
-
-#### Index signature
-
-▪ [k: `string`]: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:108
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IntervalSchedule.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IntervalSchedule.md
deleted file mode 100644
index 365dfd5f7dfdf..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.IntervalSchedule.md
+++ /dev/null
@@ -1,23 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / IntervalSchedule
-
-# Interface: IntervalSchedule
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).IntervalSchedule
-
-## Table of contents
-
-### Properties
-
-- [interval](client._internal_namespace.IntervalSchedule.md#interval)
-
-## Properties
-
-### interval
-
-• **interval**: `string`
-
-An interval in minutes (e.g. '5m'). If specified, this is a recurring task.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:137
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaFeatureConfig.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaFeatureConfig.md
deleted file mode 100644
index 2013e42ad5bf2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaFeatureConfig.md
+++ /dev/null
@@ -1,257 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / KibanaFeatureConfig
-
-# Interface: KibanaFeatureConfig
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).KibanaFeatureConfig
-
-Interface for registering a feature.
-Feature registration allows plugins to hide their applications with spaces,
-and secure access when configured for security.
-
-## Table of contents
-
-### Properties
-
-- [alerting](client._internal_namespace.KibanaFeatureConfig.md#alerting)
-- [app](client._internal_namespace.KibanaFeatureConfig.md#app)
-- [cases](client._internal_namespace.KibanaFeatureConfig.md#cases)
-- [catalogue](client._internal_namespace.KibanaFeatureConfig.md#catalogue)
-- [category](client._internal_namespace.KibanaFeatureConfig.md#category)
-- [excludeFromBasePrivileges](client._internal_namespace.KibanaFeatureConfig.md#excludefrombaseprivileges)
-- [id](client._internal_namespace.KibanaFeatureConfig.md#id)
-- [management](client._internal_namespace.KibanaFeatureConfig.md#management)
-- [minimumLicense](client._internal_namespace.KibanaFeatureConfig.md#minimumlicense)
-- [name](client._internal_namespace.KibanaFeatureConfig.md#name)
-- [order](client._internal_namespace.KibanaFeatureConfig.md#order)
-- [privileges](client._internal_namespace.KibanaFeatureConfig.md#privileges)
-- [privilegesTooltip](client._internal_namespace.KibanaFeatureConfig.md#privilegestooltip)
-- [reserved](client._internal_namespace.KibanaFeatureConfig.md#reserved)
-- [subFeatures](client._internal_namespace.KibanaFeatureConfig.md#subfeatures)
-
-## Properties
-
-### alerting
-
-• `Optional` **alerting**: readonly `string`[]
-
-If your feature grants access to specific Alert Types, you can specify them here to control visibility based on the current space.
-Include both Alert Types registered by the feature and external Alert Types such as built-in
-Alert Types and Alert Types provided by other features to which you wish to grant access.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:83
-
-___
-
-### app
-
-• **app**: readonly `string`[]
-
-An array of app ids that are enabled when this feature is enabled.
-Apps specified here will automatically cascade to the privileges defined below, unless specified differently there.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:54
-
-___
-
-### cases
-
-• `Optional` **cases**: readonly `string`[]
-
-If your feature grants access to specific case types, you can specify them here to control visibility based on the current space.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:87
-
-___
-
-### catalogue
-
-• `Optional` **catalogue**: readonly `string`[]
-
-If this feature includes a catalogue entry, you can specify them here to control visibility based on the current space.
-
-Items specified here will automatically cascade to the privileges defined below, unless specified differently there.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:77
-
-___
-
-### category
-
-• **category**: [`AppCategory`](client._internal_namespace.AppCategory.md)
-
-The category for this feature.
-This will be used to organize the list of features for display within the
-Spaces and Roles management screens.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:30
-
-___
-
-### excludeFromBasePrivileges
-
-• `Optional` **excludeFromBasePrivileges**: `boolean`
-
-Whether or not this feature should be excluded from the base privileges.
-This is primarily helpful when migrating applications with a "legacy" privileges model
-to use Kibana privileges. We don't want these features to be considered part of the `all`
-or `read` base privileges in a minor release if the user was previously granted access
-using an additional reserved role.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:42
-
-___
-
-### id
-
-• **id**: `string`
-
-Unique identifier for this feature.
-This identifier is also used when generating UI Capabilities.
-
-**`see`** UICapabilities
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:19
-
-___
-
-### management
-
-• `Optional` **management**: `Object`
-
-If this feature includes management sections, you can specify them here to control visibility of those
-pages based on the current space.
-
-Items specified here will automatically cascade to the privileges defined below, unless specified differently there.
-
-**`example`**
-```ts
- // Enables access to the "Advanced Settings" management page within the Kibana section
- management: {
- kibana: ['settings']
- }
-```
-
-#### Index signature
-
-▪ [sectionId: `string`]: readonly `string`[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:69
-
-___
-
-### minimumLicense
-
-• `Optional` **minimumLicense**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-Optional minimum supported license.
-If omitted, all licenses are allowed.
-This does not restrict access to your feature based on license.
-Its only purpose is to inform the space and roles UIs on which features to display.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:49
-
-___
-
-### name
-
-• **name**: `string`
-
-Display name for this feature.
-This will be displayed to end-users, so a translatable string is advised for i18n.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:24
-
-___
-
-### order
-
-• `Optional` **order**: `number`
-
-An ordinal used to sort features relative to one another for display.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:34
-
-___
-
-### privileges
-
-• **privileges**: ``null`` \| { `all`: [`FeatureKibanaPrivileges`](client._internal_namespace.FeatureKibanaPrivileges.md) ; `read`: [`FeatureKibanaPrivileges`](client._internal_namespace.FeatureKibanaPrivileges.md) }
-
-Feature privilege definition.
-
-**`example`**
-```ts
- {
- all: {...},
- read: {...}
- }
-```
-
-**`see`** FeatureKibanaPrivileges
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:100
-
-___
-
-### privilegesTooltip
-
-• `Optional` **privilegesTooltip**: `string`
-
-Optional message to display on the Role Management screen when configuring permissions for this feature.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:111
-
-___
-
-### reserved
-
-• `Optional` `Private` **reserved**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `description` | `string` |
-| `privileges` | readonly [`ReservedKibanaPrivilege`](client._internal_namespace.ReservedKibanaPrivilege.md)[] |
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:115
-
-___
-
-### subFeatures
-
-• `Optional` **subFeatures**: readonly [`SubFeatureConfig`](client._internal_namespace.SubFeatureConfig.md)[]
-
-Optional sub-feature privilege definitions. This can only be specified if `privileges` are are also defined.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/kibana_feature.d.ts:107
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaMigratorOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaMigratorOptions.md
deleted file mode 100644
index 1b316e68c5771..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaMigratorOptions.md
+++ /dev/null
@@ -1,76 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / KibanaMigratorOptions
-
-# Interface: KibanaMigratorOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).KibanaMigratorOptions
-
-## Table of contents
-
-### Properties
-
-- [client](client._internal_namespace.KibanaMigratorOptions.md#client)
-- [kibanaIndex](client._internal_namespace.KibanaMigratorOptions.md#kibanaindex)
-- [kibanaVersion](client._internal_namespace.KibanaMigratorOptions.md#kibanaversion)
-- [logger](client._internal_namespace.KibanaMigratorOptions.md#logger)
-- [soMigrationsConfig](client._internal_namespace.KibanaMigratorOptions.md#somigrationsconfig)
-- [typeRegistry](client._internal_namespace.KibanaMigratorOptions.md#typeregistry)
-
-## Properties
-
-### client
-
-• **client**: [`ElasticsearchClient`](../modules/client._internal_namespace.md#elasticsearchclient)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:10
-
-___
-
-### kibanaIndex
-
-• **kibanaIndex**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:13
-
-___
-
-### kibanaVersion
-
-• **kibanaVersion**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:14
-
-___
-
-### logger
-
-• **logger**: `Logger`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:15
-
-___
-
-### soMigrationsConfig
-
-• **soMigrationsConfig**: `Readonly`<{} & { `batchSize`: `number` ; `maxBatchSizeBytes`: `ByteSizeValue` ; `pollInterval`: `number` ; `retryAttempts`: `number` ; `scrollDuration`: `string` ; `skip`: `boolean` }\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:12
-
-___
-
-### typeRegistry
-
-• **typeRegistry**: [`ISavedObjectTypeRegistry`](../modules/client._internal_namespace.md#isavedobjecttyperegistry)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:11
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaMigratorStatus.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaMigratorStatus.md
deleted file mode 100644
index 21bba02200fa4..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaMigratorStatus.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / KibanaMigratorStatus
-
-# Interface: KibanaMigratorStatus
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).KibanaMigratorStatus
-
-## Table of contents
-
-### Properties
-
-- [result](client._internal_namespace.KibanaMigratorStatus.md#result)
-- [status](client._internal_namespace.KibanaMigratorStatus.md#status)
-- [waitingIndex](client._internal_namespace.KibanaMigratorStatus.md#waitingindex)
-
-## Properties
-
-### result
-
-• `Optional` **result**: [`MigrationResult`](../modules/client._internal_namespace.md#migrationresult)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:20
-
-___
-
-### status
-
-• **status**: [`MigrationStatus`](../modules/client._internal_namespace.md#migrationstatus)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:19
-
-___
-
-### waitingIndex
-
-• `Optional` **waitingIndex**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:21
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaRequestEvents.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaRequestEvents.md
deleted file mode 100644
index c4b610af9ba99..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.KibanaRequestEvents.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / KibanaRequestEvents
-
-# Interface: KibanaRequestEvents
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).KibanaRequestEvents
-
-Request events.
-
-## Table of contents
-
-### Properties
-
-- [aborted$](client._internal_namespace.KibanaRequestEvents.md#aborted$)
-- [completed$](client._internal_namespace.KibanaRequestEvents.md#completed$)
-
-## Properties
-
-### aborted$
-
-• **aborted$**: `Observable`<`void`\>
-
-Observable that emits once if and when the request has been aborted.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:48
-
-___
-
-### completed$
-
-• **completed$**: `Observable`<`void`\>
-
-Observable that emits once if and when the request has been completely handled.
-
-**`remarks`**
-The request may be considered completed if:
-- A response has been sent to the client; or
-- The request was aborted.
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:57
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LegacyUrlAliasTarget.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LegacyUrlAliasTarget.md
deleted file mode 100644
index 1580adc5c3127..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LegacyUrlAliasTarget.md
+++ /dev/null
@@ -1,51 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / LegacyUrlAliasTarget
-
-# Interface: LegacyUrlAliasTarget
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).LegacyUrlAliasTarget
-
-Client interface for interacting with legacy URL aliases.
-
-## Table of contents
-
-### Properties
-
-- [sourceId](client._internal_namespace.LegacyUrlAliasTarget.md#sourceid)
-- [targetSpace](client._internal_namespace.LegacyUrlAliasTarget.md#targetspace)
-- [targetType](client._internal_namespace.LegacyUrlAliasTarget.md#targettype)
-
-## Properties
-
-### sourceId
-
-• **sourceId**: `string`
-
-The original ID of the object, before it was converted.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:99
-
-___
-
-### targetSpace
-
-• **targetSpace**: `string`
-
-The namespace that the object existed in when it was converted.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:91
-
-___
-
-### targetType
-
-• **targetType**: `string`
-
-The type of the object when it was converted.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:95
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicenseCheck.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicenseCheck.md
deleted file mode 100644
index 084c5ae23607e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicenseCheck.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / LicenseCheck
-
-# Interface: LicenseCheck
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).LicenseCheck
-
-## Table of contents
-
-### Properties
-
-- [message](client._internal_namespace.LicenseCheck.md#message)
-- [state](client._internal_namespace.LicenseCheck.md#state)
-
-## Properties
-
-### message
-
-• `Optional` **message**: `string`
-
-A message containing the reason for a license type not being valid.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:75
-
-___
-
-### state
-
-• **state**: [`LicenseCheckState`](../modules/client._internal_namespace.md#licensecheckstate)
-
-The state of checking the results of a license type meeting the license minimum.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:71
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicenseFeature.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicenseFeature.md
deleted file mode 100644
index e6794cd50d933..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicenseFeature.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / LicenseFeature
-
-# Interface: LicenseFeature
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).LicenseFeature
-
-## Table of contents
-
-### Properties
-
-- [isAvailable](client._internal_namespace.LicenseFeature.md#isavailable)
-- [isEnabled](client._internal_namespace.LicenseFeature.md#isenabled)
-
-## Properties
-
-### isAvailable
-
-• **isAvailable**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:16
-
-___
-
-### isEnabled
-
-• **isEnabled**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:17
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicensingPluginSetup.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicensingPluginSetup.md
deleted file mode 100644
index 240dbd27ad2fc..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.LicensingPluginSetup.md
+++ /dev/null
@@ -1,60 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / LicensingPluginSetup
-
-# Interface: LicensingPluginSetup
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).LicensingPluginSetup
-
-## Table of contents
-
-### Properties
-
-- [featureUsage](client._internal_namespace.LicensingPluginSetup.md#featureusage)
-- [license$](client._internal_namespace.LicensingPluginSetup.md#license$)
-
-### Methods
-
-- [refresh](client._internal_namespace.LicensingPluginSetup.md#refresh)
-
-## Properties
-
-### featureUsage
-
-• **featureUsage**: [`FeatureUsageServiceSetup`](client._internal_namespace.FeatureUsageServiceSetup.md)
-
-APIs to register licensed feature usage.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/server/types.d.ts:49
-
-___
-
-### license$
-
-• **license$**: `Observable`<[`ILicense`](client._internal_namespace.ILicense.md)\>
-
-Steam of licensing information [ILicense](client._internal_namespace.ILicense.md).
-
-**`deprecated`** in favour of the counterpart provided from start contract
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/server/types.d.ts:40
-
-## Methods
-
-### refresh
-
-▸ **refresh**(): `Promise`<[`ILicense`](client._internal_namespace.ILicense.md)\>
-
-Triggers licensing information re-fetch.
-
-**`deprecated`** in favour of the counterpart provided from start contract
-
-#### Returns
-
-`Promise`<[`ILicense`](client._internal_namespace.ILicense.md)\>
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/server/types.d.ts:45
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Middleware.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Middleware.md
deleted file mode 100644
index 0a6d5169b4278..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Middleware.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Middleware
-
-# Interface: Middleware
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Middleware
-
-## Table of contents
-
-### Properties
-
-- [beforeMarkRunning](client._internal_namespace.Middleware.md#beforemarkrunning)
-- [beforeRun](client._internal_namespace.Middleware.md#beforerun)
-- [beforeSave](client._internal_namespace.Middleware.md#beforesave)
-
-## Properties
-
-### beforeMarkRunning
-
-• **beforeMarkRunning**: [`BeforeRunContextFunction`](../modules/client._internal_namespace.md#beforeruncontextfunction)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:11
-
-___
-
-### beforeRun
-
-• **beforeRun**: [`BeforeRunContextFunction`](../modules/client._internal_namespace.md#beforeruncontextfunction)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:10
-
-___
-
-### beforeSave
-
-• **beforeSave**: [`BeforeSaveContextFunction`](../modules/client._internal_namespace.md#beforesavecontextfunction)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:9
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.OperationDetails.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.OperationDetails.md
deleted file mode 100644
index a7e428f943d05..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.OperationDetails.md
+++ /dev/null
@@ -1,91 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / OperationDetails
-
-# Interface: OperationDetails
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).OperationDetails
-
-Defines the structure for a case API route.
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.OperationDetails.md#action)
-- [docType](client._internal_namespace.OperationDetails.md#doctype)
-- [ecsType](client._internal_namespace.OperationDetails.md#ecstype)
-- [name](client._internal_namespace.OperationDetails.md#name)
-- [savedObjectType](client._internal_namespace.OperationDetails.md#savedobjecttype)
-- [verbs](client._internal_namespace.OperationDetails.md#verbs)
-
-## Properties
-
-### action
-
-• **action**: `string`
-
-The ECS `event.action` field, should be in the form of _ e.g comment_get, case_fined
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:83](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L83)
-
-___
-
-### docType
-
-• **docType**: `string`
-
-The readable name of the entity being operated on e.g. case, comment, configurations (make it plural if it reads better that way etc)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:91](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L91)
-
-___
-
-### ecsType
-
-• **ecsType**: `EcsEventType`
-
-The ECS event type that this operation should be audit logged as (creation, deletion, access, etc)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:74](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L74)
-
-___
-
-### name
-
-• **name**: `string`
-
-The name of the operation to authorize against for the privilege check.
-These values need to match one of the operation strings defined here: x-pack/plugins/security/server/authorization/privileges/feature_privilege_builder/cases.ts
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L79)
-
-___
-
-### savedObjectType
-
-• **savedObjectType**: `string`
-
-The actual saved object type of the entity e.g. cases, cases-comments
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:95](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L95)
-
-___
-
-### verbs
-
-• **verbs**: [`Verbs`](client._internal_namespace.Verbs.md)
-
-The verbs that are associated with this type of operation, these should line up with the event type e.g. creating, created, create etc
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:87](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L87)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.OwnerEntity.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.OwnerEntity.md
deleted file mode 100644
index 771823c8e9711..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.OwnerEntity.md
+++ /dev/null
@@ -1,35 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / OwnerEntity
-
-# Interface: OwnerEntity
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).OwnerEntity
-
-Describes an entity with the necessary fields to identify if the user is authorized to interact with the saved object
-returned from some find query.
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.OwnerEntity.md#id)
-- [owner](client._internal_namespace.OwnerEntity.md#owner)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:104](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L104)
-
-___
-
-### owner
-
-• **owner**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:103](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L103)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCase.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCase.md
deleted file mode 100644
index 39774f46c552f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCase.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PatchCase
-
-# Interface: PatchCase
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PatchCase
-
-## Table of contents
-
-### Properties
-
-- [caseId](client._internal_namespace.PatchCase.md#caseid)
-- [originalCase](client._internal_namespace.PatchCase.md#originalcase)
-- [updatedAttributes](client._internal_namespace.PatchCase.md#updatedattributes)
-- [version](client._internal_namespace.PatchCase.md#version)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:98](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L98)
-
-___
-
-### originalCase
-
-• **originalCase**: [`SavedObject`](client._internal_namespace.SavedObject.md)<{ `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:100](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L100)
-
-___
-
-### updatedAttributes
-
-• **updatedAttributes**: `Partial`<{ `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & [`PushedArgs`](client._internal_namespace.PushedArgs.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:99](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L99)
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:101](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L101)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCaseConfigureArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCaseConfigureArgs.md
deleted file mode 100644
index c6909426e1088..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCaseConfigureArgs.md
+++ /dev/null
@@ -1,64 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PatchCaseConfigureArgs
-
-# Interface: PatchCaseConfigureArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PatchCaseConfigureArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs.md)
-
- ↳ **`PatchCaseConfigureArgs`**
-
-## Table of contents
-
-### Properties
-
-- [configurationId](client._internal_namespace.PatchCaseConfigureArgs.md#configurationid)
-- [originalConfiguration](client._internal_namespace.PatchCaseConfigureArgs.md#originalconfiguration)
-- [unsecuredSavedObjectsClient](client._internal_namespace.PatchCaseConfigureArgs.md#unsecuredsavedobjectsclient)
-- [updatedAttributes](client._internal_namespace.PatchCaseConfigureArgs.md#updatedattributes)
-
-## Properties
-
-### configurationId
-
-• **configurationId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:46](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L46)
-
-___
-
-### originalConfiguration
-
-• **originalConfiguration**: [`SavedObject`](client._internal_namespace.SavedObject.md)<{ `closure_type`: ``"close-by-user"`` \| ``"close-by-pushing"`` = ClosureTypeRT; `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt } & { `owner`: `string` = rt.string } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:48](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L48)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L30)
-
-___
-
-### updatedAttributes
-
-• **updatedAttributes**: `Partial`<{ `closure_type`: ``"close-by-user"`` \| ``"close-by-pushing"`` = ClosureTypeRT; `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt } & { `owner`: `string` = rt.string } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:47](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L47)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCasesArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCasesArgs.md
deleted file mode 100644
index 24db998f64f3d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PatchCasesArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PatchCasesArgs
-
-# Interface: PatchCasesArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PatchCasesArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`PatchCasesArgs`**
-
-## Table of contents
-
-### Properties
-
-- [cases](client._internal_namespace.PatchCasesArgs.md#cases)
-- [unsecuredSavedObjectsClient](client._internal_namespace.PatchCasesArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### cases
-
-• **cases**: [`PatchCase`](client._internal_namespace.PatchCase.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:106](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L106)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PersistableState.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PersistableState.md
deleted file mode 100644
index 7300cc96a8fd2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PersistableState.md
+++ /dev/null
@@ -1,133 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PersistableState
-
-# Interface: PersistableState
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PersistableState
-
-Persistable state interface can be implemented by something that persists
-(stores) state, for example, in a saved object. Once implemented that thing
-will gain ability to "extract" and "inject" saved object references, which
-are necessary for various saved object tasks, such as export. It will also be
-able to do state migrations across Kibana versions, if the shape of the state
-would change over time.
-
-**`todo`** Maybe rename it to `PersistableStateItem`?
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `P` | extends `SerializableRecord` = `SerializableRecord` |
-
-## Table of contents
-
-### Properties
-
-- [migrations](client._internal_namespace.PersistableState.md#migrations)
-
-### Methods
-
-- [extract](client._internal_namespace.PersistableState.md#extract)
-- [inject](client._internal_namespace.PersistableState.md#inject)
-- [telemetry](client._internal_namespace.PersistableState.md#telemetry)
-
-## Properties
-
-### migrations
-
-• **migrations**: [`MigrateFunctionsObject`](../modules/client._internal_namespace.md#migratefunctionsobject) \| [`GetMigrationFunctionObjectFn`](../modules/client._internal_namespace.md#getmigrationfunctionobjectfn)
-
-A list of migration functions, which migrate the persistable state
-serializable object to the next version. Migration functions should are
-keyed by the Kibana version using semver, where the version indicates to
-which version the state will be migrated to.
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:75
-
-## Methods
-
-### extract
-
-▸ **extract**(`state`): `Object`
-
-A function which receives state and should return the state with references
-extracted and an array of the extracted references. The default case could
-simply return the same state with an empty array of references.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `state` | `P` | The persistable state serializable state object. |
-
-#### Returns
-
-`Object`
-
-Persistable state object with references extracted and a list of
- references.
-
-| Name | Type |
-| :------ | :------ |
-| `references` | [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[] |
-| `state` | `P` |
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:65
-
-___
-
-### inject
-
-▸ **inject**(`state`, `references`): `P`
-
-A function which receives state and a list of references and should return
-back the state with references injected. The default is an identity
-function.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `state` | `P` | The persistable state serializable state object. |
-| `references` | [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[] | List of saved object references. |
-
-#### Returns
-
-`P`
-
-Persistable state object with references injected.
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:55
-
-___
-
-### telemetry
-
-▸ **telemetry**(`state`, `stats`): `Record`<`string`, `any`\>
-
-Function which reports telemetry information. This function is essentially
-a "reducer" - it receives the existing "stats" object and returns an
-updated version of the "stats" object.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `state` | `P` | The persistable state serializable state object. |
-| `stats` | `Record`<`string`, `any`\> | Stats object containing the stats which were already collected. This `stats` object shall not be mutated in-line. |
-
-#### Returns
-
-`Record`<`string`, `any`\>
-
-A new stats object augmented with new telemetry information.
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:45
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PluginStartContract.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PluginStartContract.md
deleted file mode 100644
index 3ded8d5c50642..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PluginStartContract.md
+++ /dev/null
@@ -1,40 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PluginStartContract
-
-# Interface: PluginStartContract
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PluginStartContract
-
-## Table of contents
-
-### Methods
-
-- [getElasticsearchFeatures](client._internal_namespace.PluginStartContract.md#getelasticsearchfeatures)
-- [getKibanaFeatures](client._internal_namespace.PluginStartContract.md#getkibanafeatures)
-
-## Methods
-
-### getElasticsearchFeatures
-
-▸ **getElasticsearchFeatures**(): [`ElasticsearchFeature`](../classes/client._internal_namespace.ElasticsearchFeature.md)[]
-
-#### Returns
-
-[`ElasticsearchFeature`](../classes/client._internal_namespace.ElasticsearchFeature.md)[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/server/plugin.d.ts:28
-
-___
-
-### getKibanaFeatures
-
-▸ **getKibanaFeatures**(): [`KibanaFeature`](../classes/client._internal_namespace.KibanaFeature.md)[]
-
-#### Returns
-
-[`KibanaFeature`](../classes/client._internal_namespace.KibanaFeature.md)[]
-
-#### Defined in
-
-x-pack/plugins/features/target/types/server/plugin.d.ts:29
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseArgs.md
deleted file mode 100644
index 03690ece438b7..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseArgs.md
+++ /dev/null
@@ -1,53 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PostCaseArgs
-
-# Interface: PostCaseArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PostCaseArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`PostCaseArgs`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.PostCaseArgs.md#attributes)
-- [id](client._internal_namespace.PostCaseArgs.md#id)
-- [unsecuredSavedObjectsClient](client._internal_namespace.PostCaseArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attributes
-
-• **attributes**: { `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:93](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L93)
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:94](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L94)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseConfigureArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseConfigureArgs.md
deleted file mode 100644
index b10f3e3ae51ba..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseConfigureArgs.md
+++ /dev/null
@@ -1,53 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PostCaseConfigureArgs
-
-# Interface: PostCaseConfigureArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PostCaseConfigureArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs.md)
-
- ↳ **`PostCaseConfigureArgs`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.PostCaseConfigureArgs.md#attributes)
-- [id](client._internal_namespace.PostCaseConfigureArgs.md#id)
-- [unsecuredSavedObjectsClient](client._internal_namespace.PostCaseConfigureArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attributes
-
-• **attributes**: { `closure_type`: ``"close-by-user"`` \| ``"close-by-pushing"`` = ClosureTypeRT; `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt } & { `owner`: `string` = rt.string } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:41](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L41)
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:42](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L42)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/configure/index.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/configure/index.ts#L30)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseUserActionArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseUserActionArgs.md
deleted file mode 100644
index 5b890d18106ea..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostCaseUserActionArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PostCaseUserActionArgs
-
-# Interface: PostCaseUserActionArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PostCaseUserActionArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-1.md)
-
- ↳ **`PostCaseUserActionArgs`**
-
-## Table of contents
-
-### Properties
-
-- [actions](client._internal_namespace.PostCaseUserActionArgs.md#actions)
-- [unsecuredSavedObjectsClient](client._internal_namespace.PostCaseUserActionArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### actions
-
-• **actions**: [`BuilderReturnValue`](client._internal_namespace.BuilderReturnValue.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:67](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L67)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-1.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-1.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/index.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/index.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostConnectorMappingsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostConnectorMappingsArgs.md
deleted file mode 100644
index d4cc3e71a0ba8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PostConnectorMappingsArgs.md
+++ /dev/null
@@ -1,60 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PostConnectorMappingsArgs
-
-# Interface: PostConnectorMappingsArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PostConnectorMappingsArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-2.md)
-
- ↳ **`PostConnectorMappingsArgs`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.PostConnectorMappingsArgs.md#attributes)
-- [references](client._internal_namespace.PostConnectorMappingsArgs.md#references)
-- [unsecuredSavedObjectsClient](client._internal_namespace.PostConnectorMappingsArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attributes
-
-• **attributes**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `mappings` | { action\_type: "append" \| "nothing" \| "overwrite"; source: "description" \| "title" \| "comments"; target: string; }[] |
-| `owner` | `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:22](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L22)
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:23](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L23)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-2.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-2.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L15)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PreConfiguredAction.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PreConfiguredAction.md
deleted file mode 100644
index d5bd141afd372..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PreConfiguredAction.md
+++ /dev/null
@@ -1,124 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PreConfiguredAction
-
-# Interface: PreConfiguredAction
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PreConfiguredAction
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Config` | extends [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig) = [`ActionTypeConfig`](../modules/client._internal_namespace.md#actiontypeconfig) |
-| `Secrets` | extends [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets) = [`ActionTypeSecrets`](../modules/client._internal_namespace.md#actiontypesecrets) |
-
-## Hierarchy
-
-- [`ActionResult`](client._internal_namespace.ActionResult.md)<`Config`\>
-
- ↳ **`PreConfiguredAction`**
-
-## Table of contents
-
-### Properties
-
-- [actionTypeId](client._internal_namespace.PreConfiguredAction.md#actiontypeid)
-- [config](client._internal_namespace.PreConfiguredAction.md#config)
-- [id](client._internal_namespace.PreConfiguredAction.md#id)
-- [isMissingSecrets](client._internal_namespace.PreConfiguredAction.md#ismissingsecrets)
-- [isPreconfigured](client._internal_namespace.PreConfiguredAction.md#ispreconfigured)
-- [name](client._internal_namespace.PreConfiguredAction.md#name)
-- [secrets](client._internal_namespace.PreConfiguredAction.md#secrets)
-
-## Properties
-
-### actionTypeId
-
-• **actionTypeId**: `string`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[actionTypeId](client._internal_namespace.ActionResult.md#actiontypeid)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:50
-
-___
-
-### config
-
-• `Optional` **config**: `Config`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[config](client._internal_namespace.ActionResult.md#config)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:53
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[id](client._internal_namespace.ActionResult.md#id)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:49
-
-___
-
-### isMissingSecrets
-
-• `Optional` **isMissingSecrets**: `boolean`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[isMissingSecrets](client._internal_namespace.ActionResult.md#ismissingsecrets)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:52
-
-___
-
-### isPreconfigured
-
-• **isPreconfigured**: `boolean`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[isPreconfigured](client._internal_namespace.ActionResult.md#ispreconfigured)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:54
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Inherited from
-
-[ActionResult](client._internal_namespace.ActionResult.md).[name](client._internal_namespace.ActionResult.md#name)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:51
-
-___
-
-### secrets
-
-• **secrets**: `Secrets`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:57
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ProxySettings.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ProxySettings.md
deleted file mode 100644
index e1816a9f513cd..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ProxySettings.md
+++ /dev/null
@@ -1,65 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ProxySettings
-
-# Interface: ProxySettings
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ProxySettings
-
-## Table of contents
-
-### Properties
-
-- [proxyBypassHosts](client._internal_namespace.ProxySettings.md#proxybypasshosts)
-- [proxyHeaders](client._internal_namespace.ProxySettings.md#proxyheaders)
-- [proxyOnlyHosts](client._internal_namespace.ProxySettings.md#proxyonlyhosts)
-- [proxySSLSettings](client._internal_namespace.ProxySettings.md#proxysslsettings)
-- [proxyUrl](client._internal_namespace.ProxySettings.md#proxyurl)
-
-## Properties
-
-### proxyBypassHosts
-
-• **proxyBypassHosts**: `undefined` \| `Set`<`string`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:110
-
-___
-
-### proxyHeaders
-
-• `Optional` **proxyHeaders**: `Record`<`string`, `string`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:112
-
-___
-
-### proxyOnlyHosts
-
-• **proxyOnlyHosts**: `undefined` \| `Set`<`string`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:111
-
-___
-
-### proxySSLSettings
-
-• **proxySSLSettings**: [`SSLSettings`](client._internal_namespace.SSLSettings.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:113
-
-___
-
-### proxyUrl
-
-• **proxyUrl**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:109
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PublicLicense.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PublicLicense.md
deleted file mode 100644
index 63c54f6be23cd..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PublicLicense.md
+++ /dev/null
@@ -1,80 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PublicLicense
-
-# Interface: PublicLicense
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PublicLicense
-
-Subset of license data considered as non-sensitive information.
-Can be passed to the client.
-
-## Table of contents
-
-### Properties
-
-- [expiryDateInMillis](client._internal_namespace.PublicLicense.md#expirydateinmillis)
-- [mode](client._internal_namespace.PublicLicense.md#mode)
-- [status](client._internal_namespace.PublicLicense.md#status)
-- [type](client._internal_namespace.PublicLicense.md#type)
-- [uid](client._internal_namespace.PublicLicense.md#uid)
-
-## Properties
-
-### expiryDateInMillis
-
-• **expiryDateInMillis**: `number`
-
-Unix epoch of the expiration date of the license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:36
-
-___
-
-### mode
-
-• **mode**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-The license type, being usually one of basic, standard, gold, platinum, or trial.
-
-**`deprecated`** use 'type' instead
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:45
-
-___
-
-### status
-
-• **status**: [`LicenseStatus`](../modules/client._internal_namespace.md#licensestatus)
-
-The validity status of the license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:32
-
-___
-
-### type
-
-• **type**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-The license type, being usually one of basic, standard, gold, platinum, or trial.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:40
-
-___
-
-### uid
-
-• **uid**: `string`
-
-UID for license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:28
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PublicLicenseJSON.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PublicLicenseJSON.md
deleted file mode 100644
index 895a3654baaf2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PublicLicenseJSON.md
+++ /dev/null
@@ -1,46 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PublicLicenseJSON
-
-# Interface: PublicLicenseJSON
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PublicLicenseJSON
-
-Subset of license & features data considered as non-sensitive information.
-Structured as json to be passed to the client.
-
-## Table of contents
-
-### Properties
-
-- [features](client._internal_namespace.PublicLicenseJSON.md#features)
-- [license](client._internal_namespace.PublicLicenseJSON.md#license)
-- [signature](client._internal_namespace.PublicLicenseJSON.md#signature)
-
-## Properties
-
-### features
-
-• `Optional` **features**: [`PublicFeatures`](../modules/client._internal_namespace.md#publicfeatures)
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:59
-
-___
-
-### license
-
-• `Optional` **license**: [`PublicLicense`](client._internal_namespace.PublicLicense.md)
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:58
-
-___
-
-### signature
-
-• **signature**: `string`
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:60
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PushedArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PushedArgs.md
deleted file mode 100644
index 0637bcb1cb21f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.PushedArgs.md
+++ /dev/null
@@ -1,40 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / PushedArgs
-
-# Interface: PushedArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).PushedArgs
-
-## Table of contents
-
-### Properties
-
-- [pushed\_at](client._internal_namespace.PushedArgs.md#pushed_at)
-- [pushed\_by](client._internal_namespace.PushedArgs.md#pushed_by)
-
-## Properties
-
-### pushed\_at
-
-• **pushed\_at**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:64](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L64)
-
-___
-
-### pushed\_by
-
-• **pushed\_by**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:65](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L65)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Referencable.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Referencable.md
deleted file mode 100644
index b8914a27eb524..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Referencable.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Referencable
-
-# Interface: Referencable
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Referencable
-
-## Table of contents
-
-### Properties
-
-- [references](client._internal_namespace.Referencable.md#references)
-
-## Properties
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:40
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ReservedKibanaPrivilege.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ReservedKibanaPrivilege.md
deleted file mode 100644
index cfd5cc23baa8c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ReservedKibanaPrivilege.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ReservedKibanaPrivilege
-
-# Interface: ReservedKibanaPrivilege
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ReservedKibanaPrivilege
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.ReservedKibanaPrivilege.md#id)
-- [privilege](client._internal_namespace.ReservedKibanaPrivilege.md#privilege)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/reserved_kibana_privilege.d.ts:3
-
-___
-
-### privilege
-
-• **privilege**: [`FeatureKibanaPrivileges`](client._internal_namespace.FeatureKibanaPrivileges.md)
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/reserved_kibana_privilege.d.ts:4
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ResponseSettings.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ResponseSettings.md
deleted file mode 100644
index b5c3a7374e03d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ResponseSettings.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ResponseSettings
-
-# Interface: ResponseSettings
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ResponseSettings
-
-## Table of contents
-
-### Properties
-
-- [maxContentLength](client._internal_namespace.ResponseSettings.md#maxcontentlength)
-- [timeout](client._internal_namespace.ResponseSettings.md#timeout)
-
-## Properties
-
-### maxContentLength
-
-• **maxContentLength**: `number`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:116
-
-___
-
-### timeout
-
-• **timeout**: `number`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:117
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteConfigOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteConfigOptions.md
deleted file mode 100644
index 447612f4b9ece..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteConfigOptions.md
+++ /dev/null
@@ -1,100 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteConfigOptions
-
-# Interface: RouteConfigOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteConfigOptions
-
-Additional route options.
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Method` | extends [`RouteMethod`](../modules/client._internal_namespace.md#routemethod) |
-
-## Table of contents
-
-### Properties
-
-- [authRequired](client._internal_namespace.RouteConfigOptions.md#authrequired)
-- [body](client._internal_namespace.RouteConfigOptions.md#body)
-- [tags](client._internal_namespace.RouteConfigOptions.md#tags)
-- [timeout](client._internal_namespace.RouteConfigOptions.md#timeout)
-- [xsrfRequired](client._internal_namespace.RouteConfigOptions.md#xsrfrequired)
-
-## Properties
-
-### authRequired
-
-• `Optional` **authRequired**: `boolean` \| ``"optional"``
-
-Defines authentication mode for a route:
-- true. A user has to have valid credentials to access a resource
-- false. A user can access a resource without any credentials.
-- 'optional'. A user can access a resource, and will be authenticated if provided credentials are valid.
- Can be useful when we grant access to a resource but want to identify a user if possible.
-
-Defaults to `true` if an auth mechanism is registered.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:89
-
-___
-
-### body
-
-• `Optional` **body**: `Method` extends ``"options"`` \| ``"get"`` ? `undefined` : [`RouteConfigOptionsBody`](client._internal_namespace.RouteConfigOptionsBody.md)
-
-Additional body options [RouteConfigOptionsBody](client._internal_namespace.RouteConfigOptionsBody.md).
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:105
-
-___
-
-### tags
-
-• `Optional` **tags**: readonly `string`[]
-
-Additional metadata tag strings to attach to the route.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:101
-
-___
-
-### timeout
-
-• `Optional` **timeout**: `Object`
-
-Defines per-route timeouts.
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `idleSocket?` | `number` | Milliseconds the socket can be idle before it's closed |
-| `payload?` | `Method` extends ``"options"`` \| ``"get"`` ? `undefined` : `number` | Milliseconds to receive the payload |
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:109
-
-___
-
-### xsrfRequired
-
-• `Optional` **xsrfRequired**: `Method` extends ``"get"`` ? `never` : `boolean`
-
-Defines xsrf protection requirements for a route:
-- true. Requires an incoming POST/PUT/DELETE request to contain `kbn-xsrf` header.
-- false. Disables xsrf protection.
-
-Set to true by default
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:97
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteConfigOptionsBody.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteConfigOptionsBody.md
deleted file mode 100644
index c392c1845b22a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteConfigOptionsBody.md
+++ /dev/null
@@ -1,89 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteConfigOptionsBody
-
-# Interface: RouteConfigOptionsBody
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteConfigOptionsBody
-
-Additional body options for a route
-
-## Table of contents
-
-### Properties
-
-- [accepts](client._internal_namespace.RouteConfigOptionsBody.md#accepts)
-- [maxBytes](client._internal_namespace.RouteConfigOptionsBody.md#maxbytes)
-- [output](client._internal_namespace.RouteConfigOptionsBody.md#output)
-- [parse](client._internal_namespace.RouteConfigOptionsBody.md#parse)
-
-## Properties
-
-### accepts
-
-• `Optional` **accepts**: `string` \| `string`[] \| [`RouteContentType`](../modules/client._internal_namespace.md#routecontenttype)[]
-
-A string or an array of strings with the allowed mime types for the endpoint. Use this settings to limit the set of allowed mime types. Note that allowing additional mime types not listed
-above will not enable them to be parsed, and if parse is true, the request will result in an error response.
-
-Default value: allows parsing of the following mime types:
-* application/json
-* application/*+json
-* application/octet-stream
-* application/x-www-form-urlencoded
-* multipart/form-data
-* text/*
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:45
-
-___
-
-### maxBytes
-
-• `Optional` **maxBytes**: `number`
-
-Limits the size of incoming payloads to the specified byte count. Allowing very large payloads may cause the server to run out of memory.
-
-Default value: The one set in the kibana.yml config file under the parameter `server.maxPayload`.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:51
-
-___
-
-### output
-
-• `Optional` **output**: ``"data"`` \| ``"stream"``
-
-The processed payload format. The value must be one of:
-* 'data' - the incoming payload is read fully into memory. If parse is true, the payload is parsed (JSON, form-decoded, multipart) based on the 'Content-Type' header. If parse is false, a raw
-Buffer is returned.
-* 'stream' - the incoming payload is made available via a Stream.Readable interface. If the payload is 'multipart/form-data' and parse is true, field values are presented as text while files
-are provided as streams. File streams from a 'multipart/form-data' upload will also have a hapi property containing the filename and headers properties. Note that payload streams for multipart
-payloads are a synthetic interface created on top of the entire multipart content loaded into memory. To avoid loading large multipart payloads into memory, set parse to false and handle the
-multipart payload in the handler using a streaming parser (e.g. pez).
-
-Default value: 'data', unless no validation.body is provided in the route definition. In that case the default is 'stream' to alleviate memory pressure.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:63
-
-___
-
-### parse
-
-• `Optional` **parse**: `boolean` \| ``"gunzip"``
-
-Determines if the incoming payload is processed or presented raw. Available values:
-* true - if the request 'Content-Type' matches the allowed mime types set by allow (for the whole payload as well as parts), the payload is converted into an object when possible. If the
-format is unknown, a Bad Request (400) error response is sent. Any known content encoding is decoded.
-* false - the raw payload is returned unmodified.
-* 'gunzip' - the raw payload is returned unmodified after any known content encoding is decoded.
-
-Default value: true, unless no validation.body is provided in the route definition. In that case the default is false to alleviate memory pressure.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:73
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidationResultFactory.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidationResultFactory.md
deleted file mode 100644
index 4e45bca74bdee..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidationResultFactory.md
+++ /dev/null
@@ -1,71 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteValidationResultFactory
-
-# Interface: RouteValidationResultFactory
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteValidationResultFactory
-
-Validation result factory to be used in the custom validation function to return the valid data or validation errors
-
-See [RouteValidationFunction](../modules/client._internal_namespace.md#routevalidationfunction).
-
-## Table of contents
-
-### Methods
-
-- [badRequest](client._internal_namespace.RouteValidationResultFactory.md#badrequest)
-- [ok](client._internal_namespace.RouteValidationResultFactory.md#ok)
-
-## Methods
-
-### badRequest
-
-▸ **badRequest**(`error`, `path?`): `Object`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `error` | `string` \| `Error` |
-| `path?` | `string`[] |
-
-#### Returns
-
-`Object`
-
-| Name | Type |
-| :------ | :------ |
-| `error` | [`RouteValidationError`](../classes/client._internal_namespace.RouteValidationError.md) |
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:14
-
-___
-
-### ok
-
-▸ **ok**<`T`\>(`value`): `Object`
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `value` | `T` |
-
-#### Returns
-
-`Object`
-
-| Name | Type |
-| :------ | :------ |
-| `value` | `T` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:11
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidatorConfig.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidatorConfig.md
deleted file mode 100644
index dcea2693b8a07..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidatorConfig.md
+++ /dev/null
@@ -1,60 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteValidatorConfig
-
-# Interface: RouteValidatorConfig
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteValidatorConfig
-
-The configuration object to the RouteValidator class.
-Set `params`, `query` and/or `body` to specify the validation logic to follow for that property.
-
-## Type parameters
-
-| Name |
-| :------ |
-| `P` |
-| `Q` |
-| `B` |
-
-## Table of contents
-
-### Properties
-
-- [body](client._internal_namespace.RouteValidatorConfig.md#body)
-- [params](client._internal_namespace.RouteValidatorConfig.md#params)
-- [query](client._internal_namespace.RouteValidatorConfig.md#query)
-
-## Properties
-
-### body
-
-• `Optional` **body**: [`RouteValidationSpec`](../modules/client._internal_namespace.md#routevalidationspec)<`B`\>
-
-Validation logic for the body payload
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:79
-
-___
-
-### params
-
-• `Optional` **params**: [`RouteValidationSpec`](../modules/client._internal_namespace.md#routevalidationspec)<`P`\>
-
-Validation logic for the URL params
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:69
-
-___
-
-### query
-
-• `Optional` **query**: [`RouteValidationSpec`](../modules/client._internal_namespace.md#routevalidationspec)<`Q`\>
-
-Validation logic for the Query params
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:74
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidatorOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidatorOptions.md
deleted file mode 100644
index 2652ad7475e82..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RouteValidatorOptions.md
+++ /dev/null
@@ -1,33 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RouteValidatorOptions
-
-# Interface: RouteValidatorOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RouteValidatorOptions
-
-Additional options for the RouteValidator class to modify its default behaviour.
-
-## Table of contents
-
-### Properties
-
-- [unsafe](client._internal_namespace.RouteValidatorOptions.md#unsafe)
-
-## Properties
-
-### unsafe
-
-• `Optional` **unsafe**: `Object`
-
-Set the `unsafe` config to avoid running some additional internal *safe* validations on top of your custom validation
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `body?` | `boolean` |
-| `params?` | `boolean` |
-| `query?` | `boolean` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:91
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RunContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RunContext.md
deleted file mode 100644
index 01eec0d08684b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RunContext.md
+++ /dev/null
@@ -1,25 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RunContext
-
-# Interface: RunContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RunContext
-
-The run context is passed into a task's run function as its sole argument.
-
-## Table of contents
-
-### Properties
-
-- [taskInstance](client._internal_namespace.RunContext.md#taskinstance)
-
-## Properties
-
-### taskInstance
-
-• **taskInstance**: [`ConcreteTaskInstance`](client._internal_namespace.ConcreteTaskInstance.md)
-
-The document describing the task instance, its params, state, id, etc.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:23
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RunNowResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RunNowResult.md
deleted file mode 100644
index d5a584a4b99c5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.RunNowResult.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / RunNowResult
-
-# Interface: RunNowResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).RunNowResult
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.RunNowResult.md#id)
-- [state](client._internal_namespace.RunNowResult.md#state)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_scheduling.d.ts:18
-
-___
-
-### state
-
-• `Optional` **state**: `Record`<`string`, `any`\>
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_scheduling.d.ts:19
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SSLSettings.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SSLSettings.md
deleted file mode 100644
index ce1f83e937876..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SSLSettings.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SSLSettings
-
-# Interface: SSLSettings
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SSLSettings
-
-## Table of contents
-
-### Properties
-
-- [verificationMode](client._internal_namespace.SSLSettings.md#verificationmode)
-
-## Properties
-
-### verificationMode
-
-• `Optional` **verificationMode**: ``"none"`` \| ``"certificate"`` \| ``"full"``
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:120
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObject.md
deleted file mode 100644
index 7a2ab41e7cf9c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObject.md
+++ /dev/null
@@ -1,167 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObject
-
-# Interface: SavedObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObject
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Hierarchy
-
-- **`SavedObject`**
-
- ↳ [`SavedObjectsFindResult`](client._internal_namespace.SavedObjectsFindResult.md)
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.SavedObject.md#attributes)
-- [coreMigrationVersion](client._internal_namespace.SavedObject.md#coremigrationversion)
-- [error](client._internal_namespace.SavedObject.md#error)
-- [id](client._internal_namespace.SavedObject.md#id)
-- [migrationVersion](client._internal_namespace.SavedObject.md#migrationversion)
-- [namespaces](client._internal_namespace.SavedObject.md#namespaces)
-- [originId](client._internal_namespace.SavedObject.md#originid)
-- [references](client._internal_namespace.SavedObject.md#references)
-- [type](client._internal_namespace.SavedObject.md#type)
-- [updated\_at](client._internal_namespace.SavedObject.md#updated_at)
-- [version](client._internal_namespace.SavedObject.md#version)
-
-## Properties
-
-### attributes
-
-• **attributes**: `T`
-
-{@inheritdoc SavedObjectAttributes}
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:61
-
-___
-
-### coreMigrationVersion
-
-• `Optional` **coreMigrationVersion**: `string`
-
-A semver value that is used when upgrading objects between Kibana versions.
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:67
-
-___
-
-### error
-
-• `Optional` **error**: [`SavedObjectError`](client._internal_namespace.SavedObjectError.md)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:59
-
-___
-
-### id
-
-• **id**: `string`
-
-The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:52
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-{@inheritdoc SavedObjectsMigrationVersion}
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:65
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-Space(s) that this saved object exists in. This attribute is not used for "global" saved object types which are registered with
-`namespaceType: 'agnostic'`.
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:72
-
-___
-
-### originId
-
-• `Optional` **originId**: `string`
-
-The ID of the saved object this originated from. This is set if this object's `id` was regenerated; that can happen during migration
-from a legacy single-namespace type, or during import. It is only set during migration or create operations. This is used during import
-to ensure that ID regeneration is deterministic, so saved objects will be overwritten if they are imported multiple times into a given
-space.
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:79
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-{@inheritdoc SavedObjectReference}
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:63
-
-___
-
-### type
-
-• **type**: `string`
-
-The type of Saved Object. Each plugin can define it's own custom Saved Object types.
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:54
-
-___
-
-### updated\_at
-
-• `Optional` **updated\_at**: `string`
-
-Timestamp of the last time this document had been updated.
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:58
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:56
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectAttributes.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectAttributes.md
deleted file mode 100644
index 2f260171ce47a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectAttributes.md
+++ /dev/null
@@ -1,20 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectAttributes
-
-# Interface: SavedObjectAttributes
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectAttributes
-
-The data for a Saved Object is stored as an object in the `attributes`
-property.
-
-## Hierarchy
-
-- **`SavedObjectAttributes`**
-
- ↳ [`ActionUpdate`](client._internal_namespace.ActionUpdate.md)
-
- ↳ [`ConnectorToken`](client._internal_namespace.ConnectorToken.md)
-
-## Indexable
-
-▪ [key: `string`]: [`SavedObjectAttribute`](../modules/client._internal_namespace.md#savedobjectattribute)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectDoc.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectDoc.md
deleted file mode 100644
index 50478fb7b3cf2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectDoc.md
+++ /dev/null
@@ -1,128 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectDoc
-
-# Interface: SavedObjectDoc
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectDoc
-
-Saved Object base document
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.SavedObjectDoc.md#attributes)
-- [coreMigrationVersion](client._internal_namespace.SavedObjectDoc.md#coremigrationversion)
-- [id](client._internal_namespace.SavedObjectDoc.md#id)
-- [migrationVersion](client._internal_namespace.SavedObjectDoc.md#migrationversion)
-- [namespace](client._internal_namespace.SavedObjectDoc.md#namespace)
-- [namespaces](client._internal_namespace.SavedObjectDoc.md#namespaces)
-- [originId](client._internal_namespace.SavedObjectDoc.md#originid)
-- [type](client._internal_namespace.SavedObjectDoc.md#type)
-- [updated\_at](client._internal_namespace.SavedObjectDoc.md#updated_at)
-- [version](client._internal_namespace.SavedObjectDoc.md#version)
-
-## Properties
-
-### attributes
-
-• **attributes**: `T`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:28
-
-___
-
-### coreMigrationVersion
-
-• `Optional` **coreMigrationVersion**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:34
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:29
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:33
-
-___
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:31
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:32
-
-___
-
-### originId
-
-• `Optional` **originId**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:37
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:30
-
-___
-
-### updated\_at
-
-• `Optional` **updated\_at**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:36
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:35
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectError.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectError.md
deleted file mode 100644
index 8b93bb038d5fa..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectError.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectError
-
-# Interface: SavedObjectError
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectError
-
-## Table of contents
-
-### Properties
-
-- [error](client._internal_namespace.SavedObjectError.md#error)
-- [message](client._internal_namespace.SavedObjectError.md#message)
-- [metadata](client._internal_namespace.SavedObjectError.md#metadata)
-- [statusCode](client._internal_namespace.SavedObjectError.md#statuscode)
-
-## Properties
-
-### error
-
-• **error**: `string`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:82
-
-___
-
-### message
-
-• **message**: `string`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:83
-
-___
-
-### metadata
-
-• `Optional` **metadata**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:85
-
-___
-
-### statusCode
-
-• **statusCode**: `number`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:84
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectMigrationContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectMigrationContext.md
deleted file mode 100644
index b16816fc5ec40..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectMigrationContext.md
+++ /dev/null
@@ -1,64 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectMigrationContext
-
-# Interface: SavedObjectMigrationContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectMigrationContext
-
-Migration context provided when invoking a [migration handler](../modules/client._internal_namespace.md#savedobjectmigrationfn)
-
-## Table of contents
-
-### Properties
-
-- [convertToMultiNamespaceTypeVersion](client._internal_namespace.SavedObjectMigrationContext.md#converttomultinamespacetypeversion)
-- [isSingleNamespaceType](client._internal_namespace.SavedObjectMigrationContext.md#issinglenamespacetype)
-- [log](client._internal_namespace.SavedObjectMigrationContext.md#log)
-- [migrationVersion](client._internal_namespace.SavedObjectMigrationContext.md#migrationversion)
-
-## Properties
-
-### convertToMultiNamespaceTypeVersion
-
-• `Optional` `Readonly` **convertToMultiNamespaceTypeVersion**: `string`
-
-The version in which this object type is being converted to a multi-namespace type
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/types.d.ts:57
-
-___
-
-### isSingleNamespaceType
-
-• `Readonly` **isSingleNamespaceType**: `boolean`
-
-Whether this is a single-namespace type or not
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/types.d.ts:61
-
-___
-
-### log
-
-• `Readonly` **log**: [`SavedObjectsMigrationLogger`](client._internal_namespace.SavedObjectsMigrationLogger.md)
-
-logger instance to be used by the migration handler
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/types.d.ts:49
-
-___
-
-### migrationVersion
-
-• `Readonly` **migrationVersion**: `string`
-
-The migration version that this migration function is defined for
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/types.d.ts:53
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectMigrationMap.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectMigrationMap.md
deleted file mode 100644
index 2632e6259ff5b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectMigrationMap.md
+++ /dev/null
@@ -1,23 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectMigrationMap
-
-# Interface: SavedObjectMigrationMap
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectMigrationMap
-
-A map of [migration functions](../modules/client._internal_namespace.md#savedobjectmigrationfn) to be used for a given type.
-The map's keys must be valid semver versions, and they cannot exceed the current Kibana version.
-
-For a given document, only migrations with a higher version number than that of the document will be applied.
-Migrations are executed in order, starting from the lowest version and ending with the highest one.
-
-**`example`**
-```typescript
-const migrationsMap: SavedObjectMigrationMap = {
- '1.0.0': migrateToV1,
- '2.1.0': migrateToV21
-}
-```
-
-## Indexable
-
-▪ [version: `string`]: [`SavedObjectMigrationFn`](../modules/client._internal_namespace.md#savedobjectmigrationfn)<`any`, `any`\>
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectReference.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectReference.md
deleted file mode 100644
index 2c3f8ac1c7cc0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectReference.md
+++ /dev/null
@@ -1,45 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectReference
-
-# Interface: SavedObjectReference
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectReference
-
-A reference to another saved object.
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectReference.md#id)
-- [name](client._internal_namespace.SavedObjectReference.md#name)
-- [type](client._internal_namespace.SavedObjectReference.md#type)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:30
-
-___
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:28
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:29
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectReferenceWithContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectReferenceWithContext.md
deleted file mode 100644
index 511e6aec3d9b6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectReferenceWithContext.md
+++ /dev/null
@@ -1,91 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectReferenceWithContext
-
-# Interface: SavedObjectReferenceWithContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectReferenceWithContext
-
-A returned input object or one of its references, with additional context.
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectReferenceWithContext.md#id)
-- [inboundReferences](client._internal_namespace.SavedObjectReferenceWithContext.md#inboundreferences)
-- [isMissing](client._internal_namespace.SavedObjectReferenceWithContext.md#ismissing)
-- [spaces](client._internal_namespace.SavedObjectReferenceWithContext.md#spaces)
-- [spacesWithMatchingAliases](client._internal_namespace.SavedObjectReferenceWithContext.md#spaceswithmatchingaliases)
-- [type](client._internal_namespace.SavedObjectReferenceWithContext.md#type)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-The ID of the referenced object
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:45
-
-___
-
-### inboundReferences
-
-• **inboundReferences**: { `id`: `string` ; `name`: `string` ; `type`: `string` }[]
-
-References to this object; note that this does not contain _all inbound references everywhere for this object_, it only contains
-inbound references for the scope of this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:52
-
-___
-
-### isMissing
-
-• `Optional` **isMissing**: `boolean`
-
-Whether or not this object or reference is missing
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:61
-
-___
-
-### spaces
-
-• **spaces**: `string`[]
-
-The space(s) that the referenced object exists in
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:47
-
-___
-
-### spacesWithMatchingAliases
-
-• `Optional` **spacesWithMatchingAliases**: `string`[]
-
-The space(s) that legacy URL aliases matching this type/id exist in
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:63
-
-___
-
-### type
-
-• **type**: `string`
-
-The type of the referenced object
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:43
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBaseOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBaseOptions.md
deleted file mode 100644
index afce23c52c88d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBaseOptions.md
+++ /dev/null
@@ -1,47 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBaseOptions
-
-# Interface: SavedObjectsBaseOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBaseOptions
-
-## Hierarchy
-
-- **`SavedObjectsBaseOptions`**
-
- ↳ [`SavedObjectsRemoveReferencesToResponse`](client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md)
-
- ↳ [`SavedObjectsCreateOptions`](client._internal_namespace.SavedObjectsCreateOptions.md)
-
- ↳ [`SavedObjectsDeleteOptions`](client._internal_namespace.SavedObjectsDeleteOptions.md)
-
- ↳ [`SavedObjectsUpdateOptions`](client._internal_namespace.SavedObjectsUpdateOptions.md)
-
- ↳ [`SavedObjectsBulkUpdateOptions`](client._internal_namespace.SavedObjectsBulkUpdateOptions.md)
-
- ↳ [`SavedObjectsRemoveReferencesToOptions`](client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md)
-
- ↳ [`SavedObjectsCollectMultiNamespaceReferencesOptions`](client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md)
-
- ↳ [`SavedObjectsUpdateObjectsSpacesOptions`](client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md)
-
- ↳ [`SavedObjectsDeleteByNamespaceOptions`](client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md)
-
- ↳ [`SavedObjectsIncrementCounterOptions`](client._internal_namespace.SavedObjectsIncrementCounterOptions.md)
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkCreateObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkCreateObject.md
deleted file mode 100644
index 1a5bbd79801ba..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkCreateObject.md
+++ /dev/null
@@ -1,136 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkCreateObject
-
-# Interface: SavedObjectsBulkCreateObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkCreateObject
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.SavedObjectsBulkCreateObject.md#attributes)
-- [coreMigrationVersion](client._internal_namespace.SavedObjectsBulkCreateObject.md#coremigrationversion)
-- [id](client._internal_namespace.SavedObjectsBulkCreateObject.md#id)
-- [initialNamespaces](client._internal_namespace.SavedObjectsBulkCreateObject.md#initialnamespaces)
-- [migrationVersion](client._internal_namespace.SavedObjectsBulkCreateObject.md#migrationversion)
-- [originId](client._internal_namespace.SavedObjectsBulkCreateObject.md#originid)
-- [references](client._internal_namespace.SavedObjectsBulkCreateObject.md#references)
-- [type](client._internal_namespace.SavedObjectsBulkCreateObject.md#type)
-- [version](client._internal_namespace.SavedObjectsBulkCreateObject.md#version)
-
-## Properties
-
-### attributes
-
-• **attributes**: `T`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:54
-
-___
-
-### coreMigrationVersion
-
-• `Optional` **coreMigrationVersion**: `string`
-
-A semver value that is used when upgrading objects between Kibana versions. If undefined, this will be automatically set to the current
-Kibana version when the object is created. If this is set to a non-semver value, or it is set to a semver value greater than the
-current Kibana version, it will result in an error.
-
-**`remarks`**
-Do not attempt to set this manually. It should only be used if you retrieved an existing object that had the `coreMigrationVersion`
-field set and you want to create it again.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:68
-
-___
-
-### id
-
-• `Optional` **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:52
-
-___
-
-### initialNamespaces
-
-• `Optional` **initialNamespaces**: `string`[]
-
-Optional initial namespaces for the object to be created in. If this is defined, it will supersede the namespace ID that is in
-[SavedObjectsCreateOptions](client._internal_namespace.SavedObjectsCreateOptions.md).
-
-* For shareable object types (registered with `namespaceType: 'multiple'`): this option can be used to specify one or more spaces,
- including the "All spaces" identifier (`'*'`).
-* For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`): this option can only
- be used to specify a single space, and the "All spaces" identifier (`'*'`) is not allowed.
-* For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:81
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-{@inheritDoc SavedObjectsMigrationVersion}
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:58
-
-___
-
-### originId
-
-• `Optional` **originId**: `string`
-
-Optional ID of the original saved object, if this object's `id` was regenerated
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:70
-
-___
-
-### references
-
-• `Optional` **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:56
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:53
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:55
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkGetObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkGetObject.md
deleted file mode 100644
index 3b3dd0ecbc28b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkGetObject.md
+++ /dev/null
@@ -1,65 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkGetObject
-
-# Interface: SavedObjectsBulkGetObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkGetObject
-
-## Table of contents
-
-### Properties
-
-- [fields](client._internal_namespace.SavedObjectsBulkGetObject.md#fields)
-- [id](client._internal_namespace.SavedObjectsBulkGetObject.md#id)
-- [namespaces](client._internal_namespace.SavedObjectsBulkGetObject.md#namespaces)
-- [type](client._internal_namespace.SavedObjectsBulkGetObject.md#type)
-
-## Properties
-
-### fields
-
-• `Optional` **fields**: `string`[]
-
-SavedObject fields to include in the response
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:239
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:236
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-Optional namespace(s) for the object to be retrieved in. If this is defined, it will supersede the namespace ID that is in the
-top-level options.
-
-* For shareable object types (registered with `namespaceType: 'multiple'`): this option can be used to specify one or more spaces,
- including the "All spaces" identifier (`'*'`).
-* For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`): this option can only
- be used to specify a single space, and the "All spaces" identifier (`'*'`) is not allowed.
-* For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:250
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:237
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResolveObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResolveObject.md
deleted file mode 100644
index 56105f08768ae..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResolveObject.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkResolveObject
-
-# Interface: SavedObjectsBulkResolveObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkResolveObject
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsBulkResolveObject.md#id)
-- [type](client._internal_namespace.SavedObjectsBulkResolveObject.md#type)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:279
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:280
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md
deleted file mode 100644
index 4f7fc1463bb4b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkResolveResponse
-
-# Interface: SavedObjectsBulkResolveResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkResolveResponse
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [resolved\_objects](client._internal_namespace.SavedObjectsBulkResolveResponse.md#resolved_objects)
-
-## Properties
-
-### resolved\_objects
-
-• **resolved\_objects**: [`SavedObjectsResolveResponse`](client._internal_namespace.SavedObjectsResolveResponse.md)<`T`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:287
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResponse.md
deleted file mode 100644
index 76af857d6f612..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkResponse.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkResponse
-
-# Interface: SavedObjectsBulkResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkResponse
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [saved\_objects](client._internal_namespace.SavedObjectsBulkResponse.md#saved_objects)
-
-## Properties
-
-### saved\_objects
-
-• **saved\_objects**: [`SavedObject`](client._internal_namespace.SavedObject.md)<`T`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:107
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateObject.md
deleted file mode 100644
index f0ae9c5aa503f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateObject.md
+++ /dev/null
@@ -1,111 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkUpdateObject
-
-# Interface: SavedObjectsBulkUpdateObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkUpdateObject
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Hierarchy
-
-- `Pick`<[`SavedObjectsUpdateOptions`](client._internal_namespace.SavedObjectsUpdateOptions.md)<`T`\>, ``"version"`` \| ``"references"``\>
-
- ↳ **`SavedObjectsBulkUpdateObject`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.SavedObjectsBulkUpdateObject.md#attributes)
-- [id](client._internal_namespace.SavedObjectsBulkUpdateObject.md#id)
-- [namespace](client._internal_namespace.SavedObjectsBulkUpdateObject.md#namespace)
-- [references](client._internal_namespace.SavedObjectsBulkUpdateObject.md#references)
-- [type](client._internal_namespace.SavedObjectsBulkUpdateObject.md#type)
-- [version](client._internal_namespace.SavedObjectsBulkUpdateObject.md#version)
-
-## Properties
-
-### attributes
-
-• **attributes**: `Partial`<`T`\>
-
-{@inheritdoc SavedObjectAttributes}
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:93
-
-___
-
-### id
-
-• **id**: `string`
-
-The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:89
-
-___
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Optional namespace string to use when searching for this object. If this is defined, it will supersede the namespace ID that is in
-[SavedObjectsBulkUpdateOptions](client._internal_namespace.SavedObjectsBulkUpdateOptions.md).
-
-Note: the default namespace's string representation is `'default'`, and its ID representation is `undefined`.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:100
-
-___
-
-### references
-
-• `Optional` **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-{@inheritdoc SavedObjectReference}
-
-#### Inherited from
-
-Pick.references
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:191
-
-___
-
-### type
-
-• **type**: `string`
-
-The type of this Saved Object. Each plugin can define it's own custom Saved Object types.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:91
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
-
-#### Inherited from
-
-Pick.version
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:189
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateOptions.md
deleted file mode 100644
index 4de3a8eefdb02..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateOptions.md
+++ /dev/null
@@ -1,46 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkUpdateOptions
-
-# Interface: SavedObjectsBulkUpdateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkUpdateOptions
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsBulkUpdateOptions`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsBulkUpdateOptions.md#namespace)
-- [refresh](client._internal_namespace.SavedObjectsBulkUpdateOptions.md#refresh)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### refresh
-
-• `Optional` **refresh**: [`MutatingOperationRefreshSetting`](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-The Elasticsearch Refresh setting for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:219
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md
deleted file mode 100644
index 93fb3c3f3a3b2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsBulkUpdateResponse
-
-# Interface: SavedObjectsBulkUpdateResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsBulkUpdateResponse
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [saved\_objects](client._internal_namespace.SavedObjectsBulkUpdateResponse.md#saved_objects)
-
-## Properties
-
-### saved\_objects
-
-• **saved\_objects**: [`SavedObjectsUpdateResponse`](client._internal_namespace.SavedObjectsUpdateResponse.md)<`T`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:264
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCheckConflictsObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCheckConflictsObject.md
deleted file mode 100644
index 7b8a8b1b6982f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCheckConflictsObject.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCheckConflictsObject
-
-# Interface: SavedObjectsCheckConflictsObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCheckConflictsObject
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsCheckConflictsObject.md#id)
-- [type](client._internal_namespace.SavedObjectsCheckConflictsObject.md#type)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:169
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:170
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md
deleted file mode 100644
index d43f929a18fed..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCheckConflictsResponse
-
-# Interface: SavedObjectsCheckConflictsResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCheckConflictsResponse
-
-## Table of contents
-
-### Properties
-
-- [errors](client._internal_namespace.SavedObjectsCheckConflictsResponse.md#errors)
-
-## Properties
-
-### errors
-
-• **errors**: { `error`: [`SavedObjectError`](client._internal_namespace.SavedObjectError.md) ; `id`: `string` ; `type`: `string` }[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:177
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md
deleted file mode 100644
index acf9af85bdc20..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md
+++ /dev/null
@@ -1,37 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsClosePointInTimeResponse
-
-# Interface: SavedObjectsClosePointInTimeResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsClosePointInTimeResponse
-
-## Table of contents
-
-### Properties
-
-- [num\_freed](client._internal_namespace.SavedObjectsClosePointInTimeResponse.md#num_freed)
-- [succeeded](client._internal_namespace.SavedObjectsClosePointInTimeResponse.md#succeeded)
-
-## Properties
-
-### num\_freed
-
-• **num\_freed**: `number`
-
-The number of search contexts that have been successfully closed.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:360
-
-___
-
-### succeeded
-
-• **succeeded**: `boolean`
-
-If true, all search contexts associated with the PIT id are
-successfully closed.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:356
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md
deleted file mode 100644
index 7db1c04858eb3..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCollectMultiNamespaceReferencesObject
-
-# Interface: SavedObjectsCollectMultiNamespaceReferencesObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCollectMultiNamespaceReferencesObject
-
-An object to collect references for. It must be a multi-namespace type (in other words, the object type must be registered with the
-`namespaceType: 'multiple'` or `namespaceType: 'multiple-isolated'` option).
-
-Note: if options.purpose is 'updateObjectsSpaces', it must be a shareable type (in other words, the object type must be registered with
-the `namespaceType: 'multiple'`).
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md#id)
-- [type](client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md#type)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:24
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:25
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md
deleted file mode 100644
index 32ffe4158cc00..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md
+++ /dev/null
@@ -1,48 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCollectMultiNamespaceReferencesOptions
-
-# Interface: SavedObjectsCollectMultiNamespaceReferencesOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCollectMultiNamespaceReferencesOptions
-
-Options for collecting references.
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsCollectMultiNamespaceReferencesOptions`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md#namespace)
-- [purpose](client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md#purpose)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### purpose
-
-• `Optional` **purpose**: ``"collectMultiNamespaceReferences"`` \| ``"updateObjectsSpaces"``
-
-Optional purpose used to determine filtering and authorization checks; default is 'collectMultiNamespaceReferences'
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:34
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md
deleted file mode 100644
index 768ce8c1c6094..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md
+++ /dev/null
@@ -1,23 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCollectMultiNamespaceReferencesResponse
-
-# Interface: SavedObjectsCollectMultiNamespaceReferencesResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCollectMultiNamespaceReferencesResponse
-
-The response when object references are collected.
-
-## Table of contents
-
-### Properties
-
-- [objects](client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md#objects)
-
-## Properties
-
-### objects
-
-• **objects**: [`SavedObjectReferenceWithContext`](client._internal_namespace.SavedObjectReferenceWithContext.md)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/collect_multi_namespace_references.d.ts:71
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCreateOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCreateOptions.md
deleted file mode 100644
index d2b13605808ac..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCreateOptions.md
+++ /dev/null
@@ -1,162 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCreateOptions
-
-# Interface: SavedObjectsCreateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCreateOptions
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsCreateOptions`**
-
-## Table of contents
-
-### Properties
-
-- [coreMigrationVersion](client._internal_namespace.SavedObjectsCreateOptions.md#coremigrationversion)
-- [id](client._internal_namespace.SavedObjectsCreateOptions.md#id)
-- [initialNamespaces](client._internal_namespace.SavedObjectsCreateOptions.md#initialnamespaces)
-- [migrationVersion](client._internal_namespace.SavedObjectsCreateOptions.md#migrationversion)
-- [namespace](client._internal_namespace.SavedObjectsCreateOptions.md#namespace)
-- [originId](client._internal_namespace.SavedObjectsCreateOptions.md#originid)
-- [overwrite](client._internal_namespace.SavedObjectsCreateOptions.md#overwrite)
-- [references](client._internal_namespace.SavedObjectsCreateOptions.md#references)
-- [refresh](client._internal_namespace.SavedObjectsCreateOptions.md#refresh)
-- [version](client._internal_namespace.SavedObjectsCreateOptions.md#version)
-
-## Properties
-
-### coreMigrationVersion
-
-• `Optional` **coreMigrationVersion**: `string`
-
-A semver value that is used when upgrading objects between Kibana versions. If undefined, this will be automatically set to the current
-Kibana version when the object is created. If this is set to a non-semver value, or it is set to a semver value greater than the
-current Kibana version, it will result in an error.
-
-**`remarks`**
-Do not attempt to set this manually. It should only be used if you retrieved an existing object that had the `coreMigrationVersion`
-field set and you want to create it again.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:29
-
-___
-
-### id
-
-• `Optional` **id**: `string`
-
-(not recommended) Specify an id for the document
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:10
-
-___
-
-### initialNamespaces
-
-• `Optional` **initialNamespaces**: `string`[]
-
-Optional initial namespaces for the object to be created in. If this is defined, it will supersede the namespace ID that is in
-[SavedObjectsCreateOptions](client._internal_namespace.SavedObjectsCreateOptions.md).
-
-* For shareable object types (registered with `namespaceType: 'multiple'`): this option can be used to specify one or more spaces,
- including the "All spaces" identifier (`'*'`).
-* For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`): this option can only
- be used to specify a single space, and the "All spaces" identifier (`'*'`) is not allowed.
-* For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:45
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-{@inheritDoc SavedObjectsMigrationVersion}
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:19
-
-___
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### originId
-
-• `Optional` **originId**: `string`
-
-Optional ID of the original saved object, if this object's `id` was regenerated
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:34
-
-___
-
-### overwrite
-
-• `Optional` **overwrite**: `boolean`
-
-Overwrite existing documents (defaults to false)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:12
-
-___
-
-### references
-
-• `Optional` **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:30
-
-___
-
-### refresh
-
-• `Optional` **refresh**: [`MutatingOperationRefreshSetting`](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-The Elasticsearch Refresh setting for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:32
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-An opaque version number which changes on each successful write operation.
-Can be used in conjunction with `overwrite` for implementing optimistic concurrency control.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:17
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md
deleted file mode 100644
index 3289e3cb4144f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsCreatePointInTimeFinderDependencies
-
-# Interface: SavedObjectsCreatePointInTimeFinderDependencies
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsCreatePointInTimeFinderDependencies
-
-## Table of contents
-
-### Properties
-
-- [client](client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md#client)
-
-## Properties
-
-### client
-
-• **client**: `Pick`<[`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract), ``"find"`` \| ``"openPointInTimeForType"`` \| ``"closePointInTime"``\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/point_in_time_finder.d.ts:12
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md
deleted file mode 100644
index 17fa13e76ec5f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md
+++ /dev/null
@@ -1,46 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsDeleteByNamespaceOptions
-
-# Interface: SavedObjectsDeleteByNamespaceOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsDeleteByNamespaceOptions
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsDeleteByNamespaceOptions`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md#namespace)
-- [refresh](client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md#refresh)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### refresh
-
-• `Optional` **refresh**: `boolean`
-
-The Elasticsearch supports only boolean flag for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:49
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsDeleteOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsDeleteOptions.md
deleted file mode 100644
index 21bd9feec57cf..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsDeleteOptions.md
+++ /dev/null
@@ -1,59 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsDeleteOptions
-
-# Interface: SavedObjectsDeleteOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsDeleteOptions
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsDeleteOptions`**
-
-## Table of contents
-
-### Properties
-
-- [force](client._internal_namespace.SavedObjectsDeleteOptions.md#force)
-- [namespace](client._internal_namespace.SavedObjectsDeleteOptions.md#namespace)
-- [refresh](client._internal_namespace.SavedObjectsDeleteOptions.md#refresh)
-
-## Properties
-
-### force
-
-• `Optional` **force**: `boolean`
-
-Force deletion of an object that exists in multiple namespaces
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:229
-
-___
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### refresh
-
-• `Optional` **refresh**: [`MutatingOperationRefreshSetting`](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-The Elasticsearch Refresh setting for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:227
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsExportTransformContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsExportTransformContext.md
deleted file mode 100644
index 2b82cecc98091..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsExportTransformContext.md
+++ /dev/null
@@ -1,26 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsExportTransformContext
-
-# Interface: SavedObjectsExportTransformContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsExportTransformContext
-
-Context passed down to a [export transform function](../modules/client._internal_namespace.md#savedobjectsexporttransform)
-
-## Table of contents
-
-### Properties
-
-- [request](client._internal_namespace.SavedObjectsExportTransformContext.md#request)
-
-## Properties
-
-### request
-
-• **request**: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\>
-
-The request that initiated the export request. Can be used to create scoped
-services or client inside the [transformation](../modules/client._internal_namespace.md#savedobjectsexporttransform)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/export/types.d.ts:87
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindOptions.md
deleted file mode 100644
index 1cc767734ce55..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindOptions.md
+++ /dev/null
@@ -1,270 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsFindOptions
-
-# Interface: SavedObjectsFindOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsFindOptions
-
-## Table of contents
-
-### Properties
-
-- [aggs](client._internal_namespace.SavedObjectsFindOptions.md#aggs)
-- [defaultSearchOperator](client._internal_namespace.SavedObjectsFindOptions.md#defaultsearchoperator)
-- [fields](client._internal_namespace.SavedObjectsFindOptions.md#fields)
-- [filter](client._internal_namespace.SavedObjectsFindOptions.md#filter)
-- [hasReference](client._internal_namespace.SavedObjectsFindOptions.md#hasreference)
-- [hasReferenceOperator](client._internal_namespace.SavedObjectsFindOptions.md#hasreferenceoperator)
-- [namespaces](client._internal_namespace.SavedObjectsFindOptions.md#namespaces)
-- [page](client._internal_namespace.SavedObjectsFindOptions.md#page)
-- [perPage](client._internal_namespace.SavedObjectsFindOptions.md#perpage)
-- [pit](client._internal_namespace.SavedObjectsFindOptions.md#pit)
-- [preference](client._internal_namespace.SavedObjectsFindOptions.md#preference)
-- [rootSearchFields](client._internal_namespace.SavedObjectsFindOptions.md#rootsearchfields)
-- [search](client._internal_namespace.SavedObjectsFindOptions.md#search)
-- [searchAfter](client._internal_namespace.SavedObjectsFindOptions.md#searchafter)
-- [searchFields](client._internal_namespace.SavedObjectsFindOptions.md#searchfields)
-- [sortField](client._internal_namespace.SavedObjectsFindOptions.md#sortfield)
-- [sortOrder](client._internal_namespace.SavedObjectsFindOptions.md#sortorder)
-- [type](client._internal_namespace.SavedObjectsFindOptions.md#type)
-- [typeToNamespacesMap](client._internal_namespace.SavedObjectsFindOptions.md#typetonamespacesmap)
-
-## Properties
-
-### aggs
-
-• `Optional` **aggs**: `Record`<`string`, `AggregationsAggregationContainer`\>
-
-A record of aggregations to perform.
-The API currently only supports a limited set of metrics and bucket aggregation types.
-Additional aggregation types can be contributed to Core.
-
-**`example`**
-Aggregating on SO attribute field
-```ts
-const aggs = { latest_version: { max: { field: 'dashboard.attributes.version' } } };
-return client.find({ type: 'dashboard', aggs })
-```
-
-**`example`**
-Aggregating on SO root field
-```ts
-const aggs = { latest_update: { max: { field: 'dashboard.updated_at' } } };
-return client.find({ type: 'dashboard', aggs })
-```
-
-**`alpha`**
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:103
-
-___
-
-### defaultSearchOperator
-
-• `Optional` **defaultSearchOperator**: ``"AND"`` \| ``"OR"``
-
-The search operator to use with the provided filter. Defaults to `OR`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:80
-
-___
-
-### fields
-
-• `Optional` **fields**: `string`[]
-
-An array of fields to include in the results
-
-**`example`**
-SavedObjects.find({type: 'dashboard', fields: ['attributes.name', 'attributes.location']})
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:54
-
-___
-
-### filter
-
-• `Optional` **filter**: `any`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:81
-
-___
-
-### hasReference
-
-• `Optional` **hasReference**: [`SavedObjectsFindOptionsReference`](client._internal_namespace.SavedObjectsFindOptionsReference.md) \| [`SavedObjectsFindOptionsReference`](client._internal_namespace.SavedObjectsFindOptionsReference.md)[]
-
-Search for documents having a reference to the specified objects.
-Use `hasReferenceOperator` to specify the operator to use when searching for multiple references.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:72
-
-___
-
-### hasReferenceOperator
-
-• `Optional` **hasReferenceOperator**: ``"AND"`` \| ``"OR"``
-
-The operator to use when searching by multiple references using the `hasReference` option. Defaults to `OR`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:76
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:104
-
-___
-
-### page
-
-• `Optional` **page**: `number`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:45
-
-___
-
-### perPage
-
-• `Optional` **perPage**: `number`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:46
-
-___
-
-### pit
-
-• `Optional` **pit**: [`SavedObjectsPitParams`](client._internal_namespace.SavedObjectsPitParams.md)
-
-Search against a specific Point In Time (PIT) that you've opened with [SavedObjectsClient.openPointInTimeForType](../classes/client._internal_namespace.SavedObjectsClient.md#openpointintimefortype).
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:118
-
-___
-
-### preference
-
-• `Optional` **preference**: `string`
-
-An optional ES preference value to be used for the query
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:114
-
-___
-
-### rootSearchFields
-
-• `Optional` **rootSearchFields**: `string`[]
-
-The fields to perform the parsed query against. Unlike the `searchFields` argument, these are expected to be root fields and will not
-be modified. If used in conjunction with `searchFields`, both are concatenated together.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:67
-
-___
-
-### search
-
-• `Optional` **search**: `string`
-
-Search documents using the Elasticsearch Simple Query String syntax. See Elasticsearch Simple Query String `query` argument for more information
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:56
-
-___
-
-### searchAfter
-
-• `Optional` **searchAfter**: `string`[]
-
-Use the sort values from the previous page to retrieve the next page of results.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:62
-
-___
-
-### searchFields
-
-• `Optional` **searchFields**: `string`[]
-
-The fields to perform the parsed query against. See Elasticsearch Simple Query String `fields` argument for more information
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:58
-
-___
-
-### sortField
-
-• `Optional` **sortField**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:47
-
-___
-
-### sortOrder
-
-• `Optional` **sortOrder**: `SortOrder`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:48
-
-___
-
-### type
-
-• **type**: `string` \| `string`[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:44
-
-___
-
-### typeToNamespacesMap
-
-• `Optional` **typeToNamespacesMap**: `Map`<`string`, `undefined` \| `string`[]\>
-
-This map defines each type to search for, and the namespace(s) to search for the type in; this is only intended to be used by a saved
-object client wrapper.
-If this is defined, it supersedes the `type` and `namespaces` fields when building the Elasticsearch query.
-Any types that are not included in this map will be excluded entirely.
-If a type is included but its value is undefined, the operation will search for that type in the Default namespace.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:112
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindOptionsReference.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindOptionsReference.md
deleted file mode 100644
index dd1f782c26b7d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindOptionsReference.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsFindOptionsReference
-
-# Interface: SavedObjectsFindOptionsReference
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsFindOptionsReference
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsFindOptionsReference.md#id)
-- [type](client._internal_namespace.SavedObjectsFindOptionsReference.md#type)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:30
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:29
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindResponse.md
deleted file mode 100644
index 5fd16ec67e781..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindResponse.md
+++ /dev/null
@@ -1,88 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsFindResponse
-
-# Interface: SavedObjectsFindResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsFindResponse
-
-Return type of the Saved Objects `find()` method.
-
-*Note*: this type is different between the Public and Server Saved Objects
-clients.
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-| `A` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [aggregations](client._internal_namespace.SavedObjectsFindResponse.md#aggregations)
-- [page](client._internal_namespace.SavedObjectsFindResponse.md#page)
-- [per\_page](client._internal_namespace.SavedObjectsFindResponse.md#per_page)
-- [pit\_id](client._internal_namespace.SavedObjectsFindResponse.md#pit_id)
-- [saved\_objects](client._internal_namespace.SavedObjectsFindResponse.md#saved_objects)
-- [total](client._internal_namespace.SavedObjectsFindResponse.md#total)
-
-## Properties
-
-### aggregations
-
-• `Optional` **aggregations**: `A`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:157
-
-___
-
-### page
-
-• **page**: `number`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:161
-
-___
-
-### per\_page
-
-• **per\_page**: `number`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:160
-
-___
-
-### pit\_id
-
-• `Optional` **pit\_id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:162
-
-___
-
-### saved\_objects
-
-• **saved\_objects**: [`SavedObjectsFindResult`](client._internal_namespace.SavedObjectsFindResult.md)<`T`\>[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:158
-
-___
-
-### total
-
-• **total**: `number`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:159
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindResult.md
deleted file mode 100644
index aa7578f7daaa6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsFindResult.md
+++ /dev/null
@@ -1,262 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsFindResult
-
-# Interface: SavedObjectsFindResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsFindResult
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Hierarchy
-
-- [`SavedObject`](client._internal_namespace.SavedObject.md)<`T`\>
-
- ↳ **`SavedObjectsFindResult`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.SavedObjectsFindResult.md#attributes)
-- [coreMigrationVersion](client._internal_namespace.SavedObjectsFindResult.md#coremigrationversion)
-- [error](client._internal_namespace.SavedObjectsFindResult.md#error)
-- [id](client._internal_namespace.SavedObjectsFindResult.md#id)
-- [migrationVersion](client._internal_namespace.SavedObjectsFindResult.md#migrationversion)
-- [namespaces](client._internal_namespace.SavedObjectsFindResult.md#namespaces)
-- [originId](client._internal_namespace.SavedObjectsFindResult.md#originid)
-- [references](client._internal_namespace.SavedObjectsFindResult.md#references)
-- [score](client._internal_namespace.SavedObjectsFindResult.md#score)
-- [sort](client._internal_namespace.SavedObjectsFindResult.md#sort)
-- [type](client._internal_namespace.SavedObjectsFindResult.md#type)
-- [updated\_at](client._internal_namespace.SavedObjectsFindResult.md#updated_at)
-- [version](client._internal_namespace.SavedObjectsFindResult.md#version)
-
-## Properties
-
-### attributes
-
-• **attributes**: `T`
-
-{@inheritdoc SavedObjectAttributes}
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[attributes](client._internal_namespace.SavedObject.md#attributes)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:61
-
-___
-
-### coreMigrationVersion
-
-• `Optional` **coreMigrationVersion**: `string`
-
-A semver value that is used when upgrading objects between Kibana versions.
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[coreMigrationVersion](client._internal_namespace.SavedObject.md#coremigrationversion)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:67
-
-___
-
-### error
-
-• `Optional` **error**: [`SavedObjectError`](client._internal_namespace.SavedObjectError.md)
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[error](client._internal_namespace.SavedObject.md#error)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:59
-
-___
-
-### id
-
-• **id**: `string`
-
-The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[id](client._internal_namespace.SavedObject.md#id)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:52
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-{@inheritdoc SavedObjectsMigrationVersion}
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[migrationVersion](client._internal_namespace.SavedObject.md#migrationversion)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:65
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-Space(s) that this saved object exists in. This attribute is not used for "global" saved object types which are registered with
-`namespaceType: 'agnostic'`.
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[namespaces](client._internal_namespace.SavedObject.md#namespaces)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:72
-
-___
-
-### originId
-
-• `Optional` **originId**: `string`
-
-The ID of the saved object this originated from. This is set if this object's `id` was regenerated; that can happen during migration
-from a legacy single-namespace type, or during import. It is only set during migration or create operations. This is used during import
-to ensure that ID regeneration is deterministic, so saved objects will be overwritten if they are imported multiple times into a given
-space.
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[originId](client._internal_namespace.SavedObject.md#originid)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:79
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-{@inheritdoc SavedObjectReference}
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[references](client._internal_namespace.SavedObject.md#references)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:63
-
-___
-
-### score
-
-• **score**: `number`
-
-The Elasticsearch `_score` of this result.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:117
-
-___
-
-### sort
-
-• `Optional` **sort**: `string`[]
-
-The Elasticsearch `sort` value of this result.
-
-**`remarks`**
-This can be passed directly to the `searchAfter` param in the [SavedObjectsFindOptions](client._internal_namespace.SavedObjectsFindOptions.md)
-in order to page through large numbers of hits. It is recommended you use this alongside
-a Point In Time (PIT) that was opened with [SavedObjectsClient.openPointInTimeForType](../classes/client._internal_namespace.SavedObjectsClient.md#openpointintimefortype).
-
-**`example`**
-```ts
-const { id } = await savedObjectsClient.openPointInTimeForType('visualization');
-const page1 = await savedObjectsClient.find({
- type: 'visualization',
- sortField: 'updated_at',
- sortOrder: 'asc',
- pit: { id },
-});
-const lastHit = page1.saved_objects[page1.saved_objects.length - 1];
-const page2 = await savedObjectsClient.find({
- type: 'visualization',
- sortField: 'updated_at',
- sortOrder: 'asc',
- pit: { id: page1.pit_id },
- searchAfter: lastHit.sort,
-});
-await savedObjectsClient.closePointInTime(page2.pit_id);
-```
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:146
-
-___
-
-### type
-
-• **type**: `string`
-
-The type of Saved Object. Each plugin can define it's own custom Saved Object types.
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[type](client._internal_namespace.SavedObject.md#type)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:54
-
-___
-
-### updated\_at
-
-• `Optional` **updated\_at**: `string`
-
-Timestamp of the last time this document had been updated.
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[updated_at](client._internal_namespace.SavedObject.md#updated_at)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:58
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
-
-#### Inherited from
-
-[SavedObject](client._internal_namespace.SavedObject.md).[version](client._internal_namespace.SavedObject.md#version)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:56
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportActionRequiredWarning.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportActionRequiredWarning.md
deleted file mode 100644
index e2996e270116e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportActionRequiredWarning.md
+++ /dev/null
@@ -1,65 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsImportActionRequiredWarning
-
-# Interface: SavedObjectsImportActionRequiredWarning
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsImportActionRequiredWarning
-
-A warning meant to notify that a specific user action is required to finalize the import
-of some type of object.
-
-**`remark`** The `actionUrl` must be a path relative to the basePath, and not include it.
-
-## Table of contents
-
-### Properties
-
-- [actionPath](client._internal_namespace.SavedObjectsImportActionRequiredWarning.md#actionpath)
-- [buttonLabel](client._internal_namespace.SavedObjectsImportActionRequiredWarning.md#buttonlabel)
-- [message](client._internal_namespace.SavedObjectsImportActionRequiredWarning.md#message)
-- [type](client._internal_namespace.SavedObjectsImportActionRequiredWarning.md#type)
-
-## Properties
-
-### actionPath
-
-• **actionPath**: `string`
-
-The path (without the basePath) that the user should be redirect to address this warning.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:191
-
-___
-
-### buttonLabel
-
-• `Optional` **buttonLabel**: `string`
-
-An optional label to use for the link button. If unspecified, a default label will be used.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:193
-
-___
-
-### message
-
-• **message**: `string`
-
-The translated message to display to the user.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:189
-
-___
-
-### type
-
-• **type**: ``"action_required"``
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:187
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportHookResult.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportHookResult.md
deleted file mode 100644
index 37e2cbd5d788b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportHookResult.md
+++ /dev/null
@@ -1,25 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsImportHookResult
-
-# Interface: SavedObjectsImportHookResult
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsImportHookResult
-
-Result from a [import hook](../modules/client._internal_namespace.md#savedobjectsimporthook)
-
-## Table of contents
-
-### Properties
-
-- [warnings](client._internal_namespace.SavedObjectsImportHookResult.md#warnings)
-
-## Properties
-
-### warnings
-
-• `Optional` **warnings**: [`SavedObjectsImportWarning`](../modules/client._internal_namespace.md#savedobjectsimportwarning)[]
-
-An optional list of warnings to display in the UI when the import succeeds.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:213
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportSimpleWarning.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportSimpleWarning.md
deleted file mode 100644
index 55f2c60462af4..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsImportSimpleWarning.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsImportSimpleWarning
-
-# Interface: SavedObjectsImportSimpleWarning
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsImportSimpleWarning
-
-A simple informative warning that will be displayed to the user.
-
-## Table of contents
-
-### Properties
-
-- [message](client._internal_namespace.SavedObjectsImportSimpleWarning.md#message)
-- [type](client._internal_namespace.SavedObjectsImportSimpleWarning.md#type)
-
-## Properties
-
-### message
-
-• **message**: `string`
-
-The translated message to display to the user
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:176
-
-___
-
-### type
-
-• **type**: ``"simple"``
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:174
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsIncrementCounterField.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsIncrementCounterField.md
deleted file mode 100644
index b215848243659..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsIncrementCounterField.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsIncrementCounterField
-
-# Interface: SavedObjectsIncrementCounterField
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsIncrementCounterField
-
-## Table of contents
-
-### Properties
-
-- [fieldName](client._internal_namespace.SavedObjectsIncrementCounterField.md#fieldname)
-- [incrementBy](client._internal_namespace.SavedObjectsIncrementCounterField.md#incrementby)
-
-## Properties
-
-### fieldName
-
-• **fieldName**: `string`
-
-The field name to increment the counter by.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:63
-
-___
-
-### incrementBy
-
-• `Optional` **incrementBy**: `number`
-
-The number to increment the field by (defaults to 1).
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:65
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsIncrementCounterOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsIncrementCounterOptions.md
deleted file mode 100644
index ce239bd55e5c2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsIncrementCounterOptions.md
+++ /dev/null
@@ -1,93 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsIncrementCounterOptions
-
-# Interface: SavedObjectsIncrementCounterOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsIncrementCounterOptions
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Attributes` | `unknown` |
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsIncrementCounterOptions`**
-
-## Table of contents
-
-### Properties
-
-- [initialize](client._internal_namespace.SavedObjectsIncrementCounterOptions.md#initialize)
-- [migrationVersion](client._internal_namespace.SavedObjectsIncrementCounterOptions.md#migrationversion)
-- [namespace](client._internal_namespace.SavedObjectsIncrementCounterOptions.md#namespace)
-- [refresh](client._internal_namespace.SavedObjectsIncrementCounterOptions.md#refresh)
-- [upsertAttributes](client._internal_namespace.SavedObjectsIncrementCounterOptions.md#upsertattributes)
-
-## Properties
-
-### initialize
-
-• `Optional` **initialize**: `boolean`
-
-(default=false) If true, sets all the counter fields to 0 if they don't
-already exist. Existing fields will be left as-is and won't be incremented.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:30
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-[SavedObjectsMigrationVersion](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:32
-
-___
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### refresh
-
-• `Optional` **refresh**: [`MutatingOperationRefreshSetting`](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-(default='wait_for') The Elasticsearch refresh setting for this
-operation. See [MutatingOperationRefreshSetting](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:37
-
-___
-
-### upsertAttributes
-
-• `Optional` **upsertAttributes**: `Attributes`
-
-Attributes to use when upserting the document if it doesn't exist.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:41
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMappingProperties.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMappingProperties.md
deleted file mode 100644
index 5dca5a908c566..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMappingProperties.md
+++ /dev/null
@@ -1,11 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsMappingProperties
-
-# Interface: SavedObjectsMappingProperties
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsMappingProperties
-
-Describe the fields of a [saved object type](client._internal_namespace.SavedObjectsTypeMappingDefinition.md).
-
-## Indexable
-
-▪ [field: `string`]: [`SavedObjectsFieldMapping`](../modules/client._internal_namespace.md#savedobjectsfieldmapping)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMigrationLogger.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMigrationLogger.md
deleted file mode 100644
index 399885d1ab4ae..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMigrationLogger.md
+++ /dev/null
@@ -1,124 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsMigrationLogger
-
-# Interface: SavedObjectsMigrationLogger
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsMigrationLogger
-
-## Table of contents
-
-### Methods
-
-- [debug](client._internal_namespace.SavedObjectsMigrationLogger.md#debug)
-- [error](client._internal_namespace.SavedObjectsMigrationLogger.md#error)
-- [info](client._internal_namespace.SavedObjectsMigrationLogger.md#info)
-- [warn](client._internal_namespace.SavedObjectsMigrationLogger.md#warn)
-- [warning](client._internal_namespace.SavedObjectsMigrationLogger.md#warning)
-
-## Methods
-
-### debug
-
-▸ **debug**(`msg`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `msg` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/migration_logger.d.ts:5
-
-___
-
-### error
-
-▸ **error**<`Meta`\>(`msg`, `meta`): `void`
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Meta` | extends `LogMeta` = `LogMeta` |
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `msg` | `string` |
-| `meta` | `Meta` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/migration_logger.d.ts:12
-
-___
-
-### info
-
-▸ **info**(`msg`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `msg` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/migration_logger.d.ts:6
-
-___
-
-### warn
-
-▸ **warn**(`msg`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `msg` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/migration_logger.d.ts:11
-
-___
-
-### warning
-
-▸ **warning**(`msg`): `void`
-
-**`deprecated`** Use `warn` instead.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `msg` | `string` |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/migration_logger.d.ts:10
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMigrationVersion.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMigrationVersion.md
deleted file mode 100644
index deee7313ee96b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsMigrationVersion.md
+++ /dev/null
@@ -1,21 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsMigrationVersion
-
-# Interface: SavedObjectsMigrationVersion
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsMigrationVersion
-
-Information about the migrations that have been applied to this SavedObject.
-When Kibana starts up, KibanaMigrator detects outdated documents and
-migrates them based on this value. For each migration that has been applied,
-the plugin's name is used as a key and the latest migration version as the
-value.
-
-**`example`**
-migrationVersion: {
- dashboard: '7.1.1',
- space: '6.6.6',
-}
-
-## Indexable
-
-▪ [pluginName: `string`]: `string`
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md
deleted file mode 100644
index 1b5d7dd5c90ea..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsOpenPointInTimeOptions
-
-# Interface: SavedObjectsOpenPointInTimeOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsOpenPointInTimeOptions
-
-## Table of contents
-
-### Properties
-
-- [keepAlive](client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md#keepalive)
-- [namespaces](client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md#namespaces)
-- [preference](client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md#preference)
-
-## Properties
-
-### keepAlive
-
-• `Optional` **keepAlive**: `string`
-
-Optionally specify how long ES should keep the PIT alive until the next request. Defaults to `5m`.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:320
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-An optional list of namespaces to be used when opening the PIT.
-
-When the spaces plugin is enabled:
- - this will default to the user's current space (as determined by the URL)
- - if specified, the user's current space will be ignored
- - `['*']` will search across all available spaces
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:333
-
-___
-
-### preference
-
-• `Optional` **preference**: `string`
-
-An optional ES preference value to be used for the query.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:324
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md
deleted file mode 100644
index 22718b1c3177c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md
+++ /dev/null
@@ -1,23 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsOpenPointInTimeResponse
-
-# Interface: SavedObjectsOpenPointInTimeResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsOpenPointInTimeResponse
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md#id)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-PIT ID returned from ES.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:342
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsPitParams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsPitParams.md
deleted file mode 100644
index 0c2d6fdc1cc4e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsPitParams.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsPitParams
-
-# Interface: SavedObjectsPitParams
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsPitParams
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsPitParams.md#id)
-- [keepAlive](client._internal_namespace.SavedObjectsPitParams.md#keepalive)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:36
-
-___
-
-### keepAlive
-
-• `Optional` **keepAlive**: `string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:37
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md
deleted file mode 100644
index 79de02623cf8a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md
+++ /dev/null
@@ -1,46 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsRemoveReferencesToOptions
-
-# Interface: SavedObjectsRemoveReferencesToOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsRemoveReferencesToOptions
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsRemoveReferencesToOptions`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md#namespace)
-- [refresh](client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md#refresh)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### refresh
-
-• `Optional` **refresh**: `boolean`
-
-The Elasticsearch Refresh setting for this operation. Defaults to `true`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:203
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md
deleted file mode 100644
index c6d285307c99d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md
+++ /dev/null
@@ -1,46 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsRemoveReferencesToResponse
-
-# Interface: SavedObjectsRemoveReferencesToResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsRemoveReferencesToResponse
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsRemoveReferencesToResponse`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md#namespace)
-- [updated](client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md#updated)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### updated
-
-• **updated**: `number`
-
-The number of objects that have been updated by this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:211
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsResolveResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsResolveResponse.md
deleted file mode 100644
index a4d66d064bf63..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsResolveResponse.md
+++ /dev/null
@@ -1,61 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsResolveResponse
-
-# Interface: SavedObjectsResolveResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsResolveResponse
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Table of contents
-
-### Properties
-
-- [alias\_target\_id](client._internal_namespace.SavedObjectsResolveResponse.md#alias_target_id)
-- [outcome](client._internal_namespace.SavedObjectsResolveResponse.md#outcome)
-- [saved\_object](client._internal_namespace.SavedObjectsResolveResponse.md#saved_object)
-
-## Properties
-
-### alias\_target\_id
-
-• `Optional` **alias\_target\_id**: `string`
-
-The ID of the object that the legacy URL alias points to. This is only defined when the outcome is `'aliasMatch'` or `'conflict'`.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:311
-
-___
-
-### outcome
-
-• **outcome**: ``"exactMatch"`` \| ``"aliasMatch"`` \| ``"conflict"``
-
-The outcome for a successful `resolve` call is one of the following values:
-
- * `'exactMatch'` -- One document exactly matched the given ID.
- * `'aliasMatch'` -- One document with a legacy URL alias matched the given ID; in this case the `saved_object.id` field is different
- than the given ID.
- * `'conflict'` -- Two documents matched the given ID, one was an exact match and another with a legacy URL alias; in this case the
- `saved_object` object is the exact match, and the `saved_object.id` field is the same as the given ID.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:307
-
-___
-
-### saved\_object
-
-• **saved\_object**: [`SavedObject`](client._internal_namespace.SavedObject.md)<`T`\>
-
-The saved object that was found.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:297
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsType.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsType.md
deleted file mode 100644
index b211135fc93ac..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsType.md
+++ /dev/null
@@ -1,212 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsType
-
-# Interface: SavedObjectsType
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsType
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Attributes` | `any` |
-
-## Table of contents
-
-### Properties
-
-- [convertToAliasScript](client._internal_namespace.SavedObjectsType.md#converttoaliasscript)
-- [convertToMultiNamespaceTypeVersion](client._internal_namespace.SavedObjectsType.md#converttomultinamespacetypeversion)
-- [excludeOnUpgrade](client._internal_namespace.SavedObjectsType.md#excludeonupgrade)
-- [hidden](client._internal_namespace.SavedObjectsType.md#hidden)
-- [indexPattern](client._internal_namespace.SavedObjectsType.md#indexpattern)
-- [management](client._internal_namespace.SavedObjectsType.md#management)
-- [mappings](client._internal_namespace.SavedObjectsType.md#mappings)
-- [migrations](client._internal_namespace.SavedObjectsType.md#migrations)
-- [name](client._internal_namespace.SavedObjectsType.md#name)
-- [namespaceType](client._internal_namespace.SavedObjectsType.md#namespacetype)
-- [schemas](client._internal_namespace.SavedObjectsType.md#schemas)
-
-## Properties
-
-### convertToAliasScript
-
-• `Optional` **convertToAliasScript**: `string`
-
-If defined, will be used to convert the type to an alias.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:235
-
-___
-
-### convertToMultiNamespaceTypeVersion
-
-• `Optional` **convertToMultiNamespaceTypeVersion**: `string`
-
-If defined, objects of this type will be converted to a 'multiple' or 'multiple-isolated' namespace type when migrating to this
-version.
-
-Requirements:
-
- 1. This string value must be a valid semver version
- 2. This type must have previously specified [`namespaceType: 'single'`](../modules/client._internal_namespace.md#savedobjectsnamespacetype)
- 3. This type must also specify [`namespaceType: 'multiple'`](../modules/client._internal_namespace.md#savedobjectsnamespacetype) *or*
- [`namespaceType: 'multiple-isolated'`](../modules/client._internal_namespace.md#savedobjectsnamespacetype)
-
-Example of a single-namespace type in 7.12:
-
-```ts
-{
- name: 'foo',
- hidden: false,
- namespaceType: 'single',
- mappings: {...}
-}
-```
-
-Example after converting to a multi-namespace (isolated) type in 8.0:
-
-```ts
-{
- name: 'foo',
- hidden: false,
- namespaceType: 'multiple-isolated',
- mappings: {...},
- convertToMultiNamespaceTypeVersion: '8.0.0'
-}
-```
-
-Example after converting to a multi-namespace (shareable) type in 8.1:
-
-```ts
-{
- name: 'foo',
- hidden: false,
- namespaceType: 'multiple',
- mappings: {...},
- convertToMultiNamespaceTypeVersion: '8.0.0'
-}
-```
-
-Note: migration function(s) can be optionally specified for any of these versions and will not interfere with the conversion process.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:305
-
-___
-
-### excludeOnUpgrade
-
-• `Optional` **excludeOnUpgrade**: [`SavedObjectTypeExcludeFromUpgradeFilterHook`](../modules/client._internal_namespace.md#savedobjecttypeexcludefromupgradefilterhook)
-
-If defined, allows a type to exclude unneeded documents from the migration process and effectively be deleted.
-See [SavedObjectTypeExcludeFromUpgradeFilterHook](../modules/client._internal_namespace.md#savedobjecttypeexcludefromupgradefilterhook) for more details.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:240
-
-___
-
-### hidden
-
-• **hidden**: `boolean`
-
-Is the type hidden by default. If true, repositories will not have access to this type unless explicitly
-declared as an `extraType` when creating the repository.
-
-See {@link SavedObjectsServiceStart.createInternalRepository | createInternalRepository}.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:223
-
-___
-
-### indexPattern
-
-• `Optional` **indexPattern**: `string`
-
-If defined, the type instances will be stored in the given index instead of the default one.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:231
-
-___
-
-### management
-
-• `Optional` **management**: [`SavedObjectsTypeManagementDefinition`](client._internal_namespace.SavedObjectsTypeManagementDefinition.md)<`Attributes`\>
-
-An optional [saved objects management section](client._internal_namespace.SavedObjectsTypeManagementDefinition.md) definition for the type.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:309
-
-___
-
-### mappings
-
-• **mappings**: [`SavedObjectsTypeMappingDefinition`](client._internal_namespace.SavedObjectsTypeMappingDefinition.md)
-
-The [mapping definition](client._internal_namespace.SavedObjectsTypeMappingDefinition.md) for the type.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:244
-
-___
-
-### migrations
-
-• `Optional` **migrations**: [`SavedObjectMigrationMap`](client._internal_namespace.SavedObjectMigrationMap.md) \| () => [`SavedObjectMigrationMap`](client._internal_namespace.SavedObjectMigrationMap.md)
-
-An optional map of [migrations](../modules/client._internal_namespace.md#savedobjectmigrationfn) or a function returning a map of [migrations](../modules/client._internal_namespace.md#savedobjectmigrationfn) to be used to migrate the type.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:248
-
-___
-
-### name
-
-• **name**: `string`
-
-The name of the type, which is also used as the internal id.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:216
-
-___
-
-### namespaceType
-
-• **namespaceType**: [`SavedObjectsNamespaceType`](../modules/client._internal_namespace.md#savedobjectsnamespacetype)
-
-The [namespace type](../modules/client._internal_namespace.md#savedobjectsnamespacetype) for the type.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:227
-
-___
-
-### schemas
-
-• `Optional` **schemas**: [`SavedObjectsValidationMap`](client._internal_namespace.SavedObjectsValidationMap.md) \| () => [`SavedObjectsValidationMap`](client._internal_namespace.SavedObjectsValidationMap.md)
-
-An optional schema that can be used to validate the attributes of the type.
-
-When provided, calls to [create](../classes/client._internal_namespace.SavedObjectsClient.md#create) will be validated against this schema.
-
-See [SavedObjectsValidationMap](client._internal_namespace.SavedObjectsValidationMap.md) for more details.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:256
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsTypeManagementDefinition.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsTypeManagementDefinition.md
deleted file mode 100644
index 4c9f9b9342215..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsTypeManagementDefinition.md
+++ /dev/null
@@ -1,299 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsTypeManagementDefinition
-
-# Interface: SavedObjectsTypeManagementDefinition
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsTypeManagementDefinition
-
-Configuration options for the [type](client._internal_namespace.SavedObjectsType.md)'s management section.
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Attributes` | `any` |
-
-## Table of contents
-
-### Properties
-
-- [defaultSearchField](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#defaultsearchfield)
-- [displayName](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#displayname)
-- [icon](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#icon)
-- [importableAndExportable](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#importableandexportable)
-- [isExportable](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#isexportable)
-- [onExport](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#onexport)
-- [onImport](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#onimport)
-- [visibleInManagement](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#visibleinmanagement)
-
-### Methods
-
-- [getEditUrl](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#getediturl)
-- [getInAppUrl](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#getinappurl)
-- [getTitle](client._internal_namespace.SavedObjectsTypeManagementDefinition.md#gettitle)
-
-## Properties
-
-### defaultSearchField
-
-• `Optional` **defaultSearchField**: `string`
-
-The default search field to use for this type. Defaults to `id`.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:337
-
-___
-
-### displayName
-
-• `Optional` **displayName**: `string`
-
-When specified, will be used instead of the type's name in SO management section's labels.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:324
-
-___
-
-### icon
-
-• `Optional` **icon**: `string`
-
-The eui icon name to display in the management table.
-If not defined, the default icon will be used.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:342
-
-___
-
-### importableAndExportable
-
-• `Optional` **importableAndExportable**: `boolean`
-
-Is the type importable or exportable. Defaults to `false`.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:320
-
-___
-
-### isExportable
-
-• `Optional` **isExportable**: [`SavedObjectsExportablePredicate`](../modules/client._internal_namespace.md#savedobjectsexportablepredicate)<`Attributes`\>
-
-Optional hook to specify whether an object should be exportable.
-
-If specified, `isExportable` will be called during export for each
-of this type's objects in the export, and the ones not matching the
-predicate will be excluded from the export.
-
-When implementing both `isExportable` and `onExport`, it is mandatory that
-`isExportable` returns the same value for an object before and after going
-though the export transform.
-E.g `isExportable(objectBeforeTransform) === isExportable(objectAfterTransform)`
-
-**`example`**
-Registering a type with a per-object exportability predicate
-```ts
-// src/plugins/my_plugin/server/plugin.ts
-import { myType } from './saved_objects';
-
-export class Plugin() {
- setup: (core: CoreSetup) => {
- core.savedObjects.registerType({
- ...myType,
- management: {
- ...myType.management,
- isExportable: (object) => {
- if (object.attributes.myCustomAttr === 'foo') {
- return false;
- }
- return true;
- }
- },
- });
- }
-}
-```
-
-**`remarks`** `importableAndExportable` must be `true` to specify this property.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:462
-
-___
-
-### onExport
-
-• `Optional` **onExport**: [`SavedObjectsExportTransform`](../modules/client._internal_namespace.md#savedobjectsexporttransform)<`Attributes`\>
-
-An optional export transform function that can be used transform the objects of the registered type during
-the export process.
-
-It can be used to either mutate the exported objects, or add additional objects (of any type) to the export list.
-
-See [the transform type documentation](../modules/client._internal_namespace.md#savedobjectsexporttransform) for more info and examples.
-
-When implementing both `isExportable` and `onExport`, it is mandatory that
-`isExportable` returns the same value for an object before and after going
-though the export transform.
-E.g `isExportable(objectBeforeTransform) === isExportable(objectAfterTransform)`
-
-**`remarks`** `importableAndExportable` must be `true` to specify this property.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:380
-
-___
-
-### onImport
-
-• `Optional` **onImport**: [`SavedObjectsImportHook`](../modules/client._internal_namespace.md#savedobjectsimporthook)<`Attributes`\>
-
-An optional [import hook](../modules/client._internal_namespace.md#savedobjectsimporthook) to use when importing given type.
-
-Import hooks are executed during the savedObjects import process and allow to interact
-with the imported objects. See the [hook documentation](../modules/client._internal_namespace.md#savedobjectsimporthook)
-for more info.
-
-**`example`**
-Registering a hook displaying a warning about a specific type of object
-```ts
-// src/plugins/my_plugin/server/plugin.ts
-import { myType } from './saved_objects';
-
-export class Plugin() {
- setup: (core: CoreSetup) => {
- core.savedObjects.registerType({
- ...myType,
- management: {
- ...myType.management,
- onImport: (objects) => {
- if(someActionIsNeeded(objects)) {
- return {
- warnings: [
- {
- type: 'action_required',
- message: 'Objects need to be manually enabled after import',
- actionPath: '/app/my-app/require-activation',
- },
- ]
- }
- }
- return {};
- }
- },
- });
- }
-}
-```
-
-**`remarks`** messages returned in the warnings are user facing and must be translated.
-
-**`remarks`** `importableAndExportable` must be `true` to specify this property.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:423
-
-___
-
-### visibleInManagement
-
-• `Optional` **visibleInManagement**: `boolean`
-
-When set to false, the type will not be listed or searchable in the SO management section.
-Main usage of setting this property to false for a type is when objects from the type should
-be included in the export via references or export hooks, but should not directly appear in the SOM.
-Defaults to `true`.
-
-**`remarks`** `importableAndExportable` must be `true` to specify this property.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:333
-
-## Methods
-
-### getEditUrl
-
-▸ `Optional` **getEditUrl**(`savedObject`): `string`
-
-Function returning the url to use to redirect to the editing page of this object.
-If not defined, editing will not be allowed.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `savedObject` | [`SavedObject`](client._internal_namespace.SavedObject.md)<`Attributes`\> |
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:352
-
-___
-
-### getInAppUrl
-
-▸ `Optional` **getInAppUrl**(`savedObject`): `Object`
-
-Function returning the url to use to redirect to this object from the management section.
-If not defined, redirecting to the object will not be allowed.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `savedObject` | [`SavedObject`](client._internal_namespace.SavedObject.md)<`Attributes`\> |
-
-#### Returns
-
-`Object`
-
-an object containing a `path` and `uiCapabilitiesPath` properties. the `path` is the path to
- the object page, relative to the base path. `uiCapabilitiesPath` is the path to check in the
- [uiCapabilities](client._internal_namespace.Capabilities.md) to check if the user has permission to access the object.
-
-| Name | Type |
-| :------ | :------ |
-| `path` | `string` |
-| `uiCapabilitiesPath` | `string` |
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:361
-
-___
-
-### getTitle
-
-▸ `Optional` **getTitle**(`savedObject`): `string`
-
-Function returning the title to display in the management table.
-If not defined, will use the object's type and id to generate a label.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `savedObject` | [`SavedObject`](client._internal_namespace.SavedObject.md)<`Attributes`\> |
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:347
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsTypeMappingDefinition.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsTypeMappingDefinition.md
deleted file mode 100644
index 4ebbf456a0556..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsTypeMappingDefinition.md
+++ /dev/null
@@ -1,62 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsTypeMappingDefinition
-
-# Interface: SavedObjectsTypeMappingDefinition
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsTypeMappingDefinition
-
-Describe a saved object type mapping.
-
-**`example`**
-```ts
-const typeDefinition: SavedObjectsTypeMappingDefinition = {
- properties: {
- enabled: {
- type: "boolean"
- },
- sendUsageFrom: {
- ignore_above: 256,
- type: "keyword"
- },
- lastReported: {
- type: "date"
- },
- lastVersionChecked: {
- ignore_above: 256,
- type: "keyword"
- },
- }
-}
-```
-
-## Table of contents
-
-### Properties
-
-- [dynamic](client._internal_namespace.SavedObjectsTypeMappingDefinition.md#dynamic)
-- [properties](client._internal_namespace.SavedObjectsTypeMappingDefinition.md#properties)
-
-## Properties
-
-### dynamic
-
-• `Optional` **dynamic**: ``false`` \| ``"strict"``
-
-The dynamic property of the mapping, either `false` or `'strict'`. If
-unspecified `dynamic: 'strict'` will be inherited from the top-level
-index mappings.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:33
-
-___
-
-### properties
-
-• **properties**: [`SavedObjectsMappingProperties`](client._internal_namespace.SavedObjectsMappingProperties.md)
-
-The underlying properties of the type mapping
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:35
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md
deleted file mode 100644
index 5f5243a72ad69..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md
+++ /dev/null
@@ -1,68 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsUpdateObjectsSpacesObject
-
-# Interface: SavedObjectsUpdateObjectsSpacesObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsUpdateObjectsSpacesObject
-
-An object that should have its spaces updated.
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md#id)
-- [spaces](client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md#spaces)
-- [type](client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md#type)
-- [version](client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md#version)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-The type of the object to update
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:14
-
-___
-
-### spaces
-
-• `Optional` **spaces**: `string`[]
-
-The space(s) that the object to update currently exists in. This is only intended to be used by SOC wrappers.
-
-**`internal`**
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:22
-
-___
-
-### type
-
-• **type**: `string`
-
-The ID of the object to update
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:16
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-The version of the object to update; this is used for optimistic concurrency control. This is only intended to be used by SOC wrappers.
-
-**`internal`**
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:28
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md
deleted file mode 100644
index 403680115772c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md
+++ /dev/null
@@ -1,48 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsUpdateObjectsSpacesOptions
-
-# Interface: SavedObjectsUpdateObjectsSpacesOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsUpdateObjectsSpacesOptions
-
-Options for the update operation.
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsUpdateObjectsSpacesOptions`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md#namespace)
-- [refresh](client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md#refresh)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### refresh
-
-• `Optional` **refresh**: [`MutatingOperationRefreshSetting`](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-The Elasticsearch Refresh setting for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:37
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md
deleted file mode 100644
index 204b50f484657..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md
+++ /dev/null
@@ -1,23 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsUpdateObjectsSpacesResponse
-
-# Interface: SavedObjectsUpdateObjectsSpacesResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsUpdateObjectsSpacesResponse
-
-The response when objects' spaces are updated.
-
-## Table of contents
-
-### Properties
-
-- [objects](client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md#objects)
-
-## Properties
-
-### objects
-
-• **objects**: [`SavedObjectsUpdateObjectsSpacesResponseObject`](client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:45
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md
deleted file mode 100644
index f529bdcf9344b..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md
+++ /dev/null
@@ -1,64 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsUpdateObjectsSpacesResponseObject
-
-# Interface: SavedObjectsUpdateObjectsSpacesResponseObject
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsUpdateObjectsSpacesResponseObject
-
-Details about a specific object's update result.
-
-## Table of contents
-
-### Properties
-
-- [error](client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md#error)
-- [id](client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md#id)
-- [spaces](client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md#spaces)
-- [type](client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md#type)
-
-## Properties
-
-### error
-
-• `Optional` **error**: [`SavedObjectError`](client._internal_namespace.SavedObjectError.md)
-
-Included if there was an error updating this object's spaces
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:60
-
-___
-
-### id
-
-• **id**: `string`
-
-The ID of the referenced object
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:56
-
-___
-
-### spaces
-
-• **spaces**: `string`[]
-
-The space(s) that the referenced object exists in
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:58
-
-___
-
-### type
-
-• **type**: `string`
-
-The type of the referenced object
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/update_objects_spaces.d.ts:54
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateOptions.md
deleted file mode 100644
index 0c7500b08b2fe..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateOptions.md
+++ /dev/null
@@ -1,91 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsUpdateOptions
-
-# Interface: SavedObjectsUpdateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsUpdateOptions
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Attributes` | `unknown` |
-
-## Hierarchy
-
-- [`SavedObjectsBaseOptions`](client._internal_namespace.SavedObjectsBaseOptions.md)
-
- ↳ **`SavedObjectsUpdateOptions`**
-
-## Table of contents
-
-### Properties
-
-- [namespace](client._internal_namespace.SavedObjectsUpdateOptions.md#namespace)
-- [references](client._internal_namespace.SavedObjectsUpdateOptions.md#references)
-- [refresh](client._internal_namespace.SavedObjectsUpdateOptions.md#refresh)
-- [upsert](client._internal_namespace.SavedObjectsUpdateOptions.md#upsert)
-- [version](client._internal_namespace.SavedObjectsUpdateOptions.md#version)
-
-## Properties
-
-### namespace
-
-• `Optional` **namespace**: `string`
-
-Specify the namespace for this operation
-
-#### Inherited from
-
-[SavedObjectsBaseOptions](client._internal_namespace.SavedObjectsBaseOptions.md).[namespace](client._internal_namespace.SavedObjectsBaseOptions.md#namespace)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:126
-
-___
-
-### references
-
-• `Optional` **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-{@inheritdoc SavedObjectReference}
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:191
-
-___
-
-### refresh
-
-• `Optional` **refresh**: [`MutatingOperationRefreshSetting`](../modules/client._internal_namespace.md#mutatingoperationrefreshsetting)
-
-The Elasticsearch Refresh setting for this operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:193
-
-___
-
-### upsert
-
-• `Optional` **upsert**: `Attributes`
-
-If specified, will be used to perform an upsert if the document doesn't exist
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:195
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:189
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md
deleted file mode 100644
index 2fa6a0e54a556..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md
+++ /dev/null
@@ -1,199 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsUpdateResponse
-
-# Interface: SavedObjectsUpdateResponse
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsUpdateResponse
-
-## Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-## Hierarchy
-
-- `Omit`<[`SavedObject`](client._internal_namespace.SavedObject.md)<`T`\>, ``"attributes"`` \| ``"references"``\>
-
- ↳ **`SavedObjectsUpdateResponse`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.SavedObjectsUpdateResponse.md#attributes)
-- [coreMigrationVersion](client._internal_namespace.SavedObjectsUpdateResponse.md#coremigrationversion)
-- [error](client._internal_namespace.SavedObjectsUpdateResponse.md#error)
-- [id](client._internal_namespace.SavedObjectsUpdateResponse.md#id)
-- [migrationVersion](client._internal_namespace.SavedObjectsUpdateResponse.md#migrationversion)
-- [namespaces](client._internal_namespace.SavedObjectsUpdateResponse.md#namespaces)
-- [originId](client._internal_namespace.SavedObjectsUpdateResponse.md#originid)
-- [references](client._internal_namespace.SavedObjectsUpdateResponse.md#references)
-- [type](client._internal_namespace.SavedObjectsUpdateResponse.md#type)
-- [updated\_at](client._internal_namespace.SavedObjectsUpdateResponse.md#updated_at)
-- [version](client._internal_namespace.SavedObjectsUpdateResponse.md#version)
-
-## Properties
-
-### attributes
-
-• **attributes**: `Partial`<`T`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:271
-
-___
-
-### coreMigrationVersion
-
-• `Optional` **coreMigrationVersion**: `string`
-
-A semver value that is used when upgrading objects between Kibana versions.
-
-#### Inherited from
-
-Omit.coreMigrationVersion
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:67
-
-___
-
-### error
-
-• `Optional` **error**: [`SavedObjectError`](client._internal_namespace.SavedObjectError.md)
-
-#### Inherited from
-
-Omit.error
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:59
-
-___
-
-### id
-
-• **id**: `string`
-
-The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`
-
-#### Inherited from
-
-Omit.id
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:52
-
-___
-
-### migrationVersion
-
-• `Optional` **migrationVersion**: [`SavedObjectsMigrationVersion`](client._internal_namespace.SavedObjectsMigrationVersion.md)
-
-{@inheritdoc SavedObjectsMigrationVersion}
-
-#### Inherited from
-
-Omit.migrationVersion
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:65
-
-___
-
-### namespaces
-
-• `Optional` **namespaces**: `string`[]
-
-Space(s) that this saved object exists in. This attribute is not used for "global" saved object types which are registered with
-`namespaceType: 'agnostic'`.
-
-#### Inherited from
-
-Omit.namespaces
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:72
-
-___
-
-### originId
-
-• `Optional` **originId**: `string`
-
-The ID of the saved object this originated from. This is set if this object's `id` was regenerated; that can happen during migration
-from a legacy single-namespace type, or during import. It is only set during migration or create operations. This is used during import
-to ensure that ID regeneration is deterministic, so saved objects will be overwritten if they are imported multiple times into a given
-space.
-
-#### Inherited from
-
-Omit.originId
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:79
-
-___
-
-### references
-
-• **references**: `undefined` \| [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/saved_objects_client.d.ts:272
-
-___
-
-### type
-
-• **type**: `string`
-
-The type of Saved Object. Each plugin can define it's own custom Saved Object types.
-
-#### Inherited from
-
-Omit.type
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:54
-
-___
-
-### updated\_at
-
-• `Optional` **updated\_at**: `string`
-
-Timestamp of the last time this document had been updated.
-
-#### Inherited from
-
-Omit.updated\_at
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:58
-
-___
-
-### version
-
-• `Optional` **version**: `string`
-
-An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
-
-#### Inherited from
-
-Omit.version
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:56
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsValidationMap.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsValidationMap.md
deleted file mode 100644
index 366dc9fe0a476..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SavedObjectsValidationMap.md
+++ /dev/null
@@ -1,34 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SavedObjectsValidationMap
-
-# Interface: SavedObjectsValidationMap
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SavedObjectsValidationMap
-
-A map of [validation specs](../modules/client._internal_namespace.md#savedobjectsvalidationspec) to be used for a given type.
-The map's keys must be valid semver versions.
-
-Any time you change the schema of a [SavedObjectsType](client._internal_namespace.SavedObjectsType.md), you should add a new entry
-to this map for the Kibana version the change was introduced in.
-
-**`example`**
-```typescript
-const validationMap: SavedObjectsValidationMap = {
- '1.0.0': schema.object({
- foo: schema.string(),
- }),
- '2.0.0': schema.object({
- foo: schema.string({
- minLength: 2,
- validate(value) {
- if (!/^[a-z]+$/.test(value)) {
- return 'must be lowercase letters only';
- }
- }
- }),
- }),
-}
-```
-
-## Indexable
-
-▪ [version: `string`]: [`SavedObjectsValidationSpec`](../modules/client._internal_namespace.md#savedobjectsvalidationspec)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Services.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Services.md
deleted file mode 100644
index 3a770aca3f595..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Services.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Services
-
-# Interface: Services
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Services
-
-## Table of contents
-
-### Properties
-
-- [connectorTokenClient](client._internal_namespace.Services.md#connectortokenclient)
-- [savedObjectsClient](client._internal_namespace.Services.md#savedobjectsclient)
-- [scopedClusterClient](client._internal_namespace.Services.md#scopedclusterclient)
-
-## Properties
-
-### connectorTokenClient
-
-• **connectorTokenClient**: [`ConnectorTokenClient`](../classes/client._internal_namespace.ConnectorTokenClient.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:26
-
-___
-
-### savedObjectsClient
-
-• **savedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:24
-
-___
-
-### scopedClusterClient
-
-• **scopedClusterClient**: [`ElasticsearchClient`](../modules/client._internal_namespace.md#elasticsearchclient)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:25
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Space.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Space.md
deleted file mode 100644
index 018efefd6f456..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Space.md
+++ /dev/null
@@ -1,131 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Space
-
-# Interface: Space
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Space
-
-A Space.
-
-## Hierarchy
-
-- **`Space`**
-
- ↳ [`GetSpaceResult`](client._internal_namespace.GetSpaceResult.md)
-
-## Table of contents
-
-### Properties
-
-- [\_reserved](client._internal_namespace.Space.md#_reserved)
-- [color](client._internal_namespace.Space.md#color)
-- [description](client._internal_namespace.Space.md#description)
-- [disabledFeatures](client._internal_namespace.Space.md#disabledfeatures)
-- [id](client._internal_namespace.Space.md#id)
-- [imageUrl](client._internal_namespace.Space.md#imageurl)
-- [initials](client._internal_namespace.Space.md#initials)
-- [name](client._internal_namespace.Space.md#name)
-
-## Properties
-
-### \_reserved
-
-• `Optional` `Private` **\_reserved**: `boolean`
-
-Indicates that this space is reserved (system controlled).
-Reserved spaces cannot be created or deleted by end-users.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:46
-
-___
-
-### color
-
-• `Optional` **color**: `string`
-
-Optional color (hex code) for this space.
-If neither `color` nor `imageUrl` is specified, then a color will be automatically generated.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:24
-
-___
-
-### description
-
-• `Optional` **description**: `string`
-
-Optional description for this space.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:19
-
-___
-
-### disabledFeatures
-
-• **disabledFeatures**: `string`[]
-
-The set of feature ids that should be hidden within this space.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:40
-
-___
-
-### id
-
-• **id**: `string`
-
-The unique identifier for this space.
-The id becomes part of the "URL Identifier" of the space.
-
-Example: an id of `marketing` would result in the URL identifier of `/s/marketing`.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:11
-
-___
-
-### imageUrl
-
-• `Optional` **imageUrl**: `string`
-
-Optional base-64 encoded data image url to show as this space's avatar.
-This setting takes precedence over any configured `color` or `initials`.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:36
-
-___
-
-### initials
-
-• `Optional` **initials**: `string`
-
-Optional display initials for this space's avatar. Supports a maximum of 2 characters.
-If initials are not provided, then they will be derived from the space name automatically.
-
-Initials are not displayed if an `imageUrl` has been specified.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:31
-
-___
-
-### name
-
-• **name**: `string`
-
-Display name for this space.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:15
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SpacesServiceStart.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SpacesServiceStart.md
deleted file mode 100644
index 5dd67943c579f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SpacesServiceStart.md
+++ /dev/null
@@ -1,150 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SpacesServiceStart
-
-# Interface: SpacesServiceStart
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SpacesServiceStart
-
-The Spaces service start contract.
-
-## Table of contents
-
-### Methods
-
-- [createSpacesClient](client._internal_namespace.SpacesServiceStart.md#createspacesclient)
-- [getActiveSpace](client._internal_namespace.SpacesServiceStart.md#getactivespace)
-- [getSpaceId](client._internal_namespace.SpacesServiceStart.md#getspaceid)
-- [isInDefaultSpace](client._internal_namespace.SpacesServiceStart.md#isindefaultspace)
-- [namespaceToSpaceId](client._internal_namespace.SpacesServiceStart.md#namespacetospaceid)
-- [spaceIdToNamespace](client._internal_namespace.SpacesServiceStart.md#spaceidtonamespace)
-
-## Methods
-
-### createSpacesClient
-
-▸ **createSpacesClient**(`request`): [`ISpacesClient`](client._internal_namespace.ISpacesClient.md)
-
-Creates a scoped instance of the SpacesClient.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> | the request. |
-
-#### Returns
-
-[`ISpacesClient`](client._internal_namespace.ISpacesClient.md)
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_service/spaces_service.d.ts:32
-
-___
-
-### getActiveSpace
-
-▸ **getActiveSpace**(`request`): `Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-Retrieves the Space associated with the provided request.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> | the request. |
-
-#### Returns
-
-`Promise`<[`Space`](client._internal_namespace.Space.md)\>
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_service/spaces_service.d.ts:47
-
-___
-
-### getSpaceId
-
-▸ **getSpaceId**(`request`): `string`
-
-Retrieves the space id associated with the provided request.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> | the request. |
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_service/spaces_service.d.ts:37
-
-___
-
-### isInDefaultSpace
-
-▸ **isInDefaultSpace**(`request`): `boolean`
-
-Indicates if the provided request is executing within the context of the `default` space.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> | the request. |
-
-#### Returns
-
-`boolean`
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_service/spaces_service.d.ts:42
-
-___
-
-### namespaceToSpaceId
-
-▸ **namespaceToSpaceId**(`namespace`): `string`
-
-Converts the provided namespace into the corresponding space id.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `namespace` | `undefined` \| `string` | the namespace to convert. |
-
-#### Returns
-
-`string`
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_service/spaces_service.d.ts:57
-
-___
-
-### spaceIdToNamespace
-
-▸ **spaceIdToNamespace**(`spaceId`): `undefined` \| `string`
-
-Converts the provided space id into the corresponding Saved Objects `namespace` id.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `spaceId` | `string` | the space id to convert. |
-
-#### Returns
-
-`undefined` \| `string`
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/server/spaces_service/spaces_service.d.ts:52
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeatureConfig.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeatureConfig.md
deleted file mode 100644
index adfb11e4efd7d..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeatureConfig.md
+++ /dev/null
@@ -1,38 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SubFeatureConfig
-
-# Interface: SubFeatureConfig
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SubFeatureConfig
-
-Configuration for a sub-feature.
-
-## Table of contents
-
-### Properties
-
-- [name](client._internal_namespace.SubFeatureConfig.md#name)
-- [privilegeGroups](client._internal_namespace.SubFeatureConfig.md#privilegegroups)
-
-## Properties
-
-### name
-
-• **name**: `string`
-
-Display name for this sub-feature
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:9
-
-___
-
-### privilegeGroups
-
-• **privilegeGroups**: readonly [`SubFeaturePrivilegeGroupConfig`](client._internal_namespace.SubFeaturePrivilegeGroupConfig.md)[]
-
-Collection of privilege groups
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:11
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeaturePrivilegeConfig.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeaturePrivilegeConfig.md
deleted file mode 100644
index 4cbd7bc89efc7..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeaturePrivilegeConfig.md
+++ /dev/null
@@ -1,334 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SubFeaturePrivilegeConfig
-
-# Interface: SubFeaturePrivilegeConfig
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SubFeaturePrivilegeConfig
-
-Configuration for a sub-feature privilege.
-
-## Hierarchy
-
-- `Omit`<[`FeatureKibanaPrivileges`](client._internal_namespace.FeatureKibanaPrivileges.md), ``"excludeFromBasePrivileges"``\>
-
- ↳ **`SubFeaturePrivilegeConfig`**
-
-## Table of contents
-
-### Properties
-
-- [alerting](client._internal_namespace.SubFeaturePrivilegeConfig.md#alerting)
-- [api](client._internal_namespace.SubFeaturePrivilegeConfig.md#api)
-- [app](client._internal_namespace.SubFeaturePrivilegeConfig.md#app)
-- [cases](client._internal_namespace.SubFeaturePrivilegeConfig.md#cases)
-- [catalogue](client._internal_namespace.SubFeaturePrivilegeConfig.md#catalogue)
-- [disabled](client._internal_namespace.SubFeaturePrivilegeConfig.md#disabled)
-- [id](client._internal_namespace.SubFeaturePrivilegeConfig.md#id)
-- [includeIn](client._internal_namespace.SubFeaturePrivilegeConfig.md#includein)
-- [management](client._internal_namespace.SubFeaturePrivilegeConfig.md#management)
-- [minimumLicense](client._internal_namespace.SubFeaturePrivilegeConfig.md#minimumlicense)
-- [name](client._internal_namespace.SubFeaturePrivilegeConfig.md#name)
-- [requireAllSpaces](client._internal_namespace.SubFeaturePrivilegeConfig.md#requireallspaces)
-- [savedObject](client._internal_namespace.SubFeaturePrivilegeConfig.md#savedobject)
-- [ui](client._internal_namespace.SubFeaturePrivilegeConfig.md#ui)
-
-## Properties
-
-### alerting
-
-• `Optional` **alerting**: `Object`
-
-If your feature requires access to specific Alert Types, then specify your access needs here.
-Include both Alert Types registered by the feature and external Alert Types such as built-in
-Alert Types and Alert Types provided by other features to which you wish to grant access.
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `alert?` | `Object` |
-| `alert.all?` | readonly `string`[] |
-| `alert.read?` | readonly `string`[] |
-| `rule?` | `Object` |
-| `rule.all?` | readonly `string`[] |
-| `rule.read?` | readonly `string`[] |
-
-#### Inherited from
-
-Omit.alerting
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:82
-
-___
-
-### api
-
-• `Optional` **api**: readonly `string`[]
-
-If your feature includes server-side APIs, you can tag those routes to secure access based on user permissions.
-
-**`example`**
-```ts
- // Configure your routes with a tag starting with the 'access:' prefix
- server.route({
- path: '/api/my-route',
- method: 'GET',
- handler: () => { ...},
- options: {
- tags: ['access:my_feature-admin']
- }
- });
-
- Then, specify the tags here (without the 'access:' prefix) which should be secured:
-
- {
- api: ['my_feature-admin']
- }
-```
-
-NOTE: It is important to name your tags in a way that will not collide with other plugins/features.
-A generic tag name like "access:read" could be used elsewhere, and access to that API endpoint would also
-extend to any routes you have also tagged with that name.
-
-#### Inherited from
-
-Omit.api
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:64
-
-___
-
-### app
-
-• `Optional` **app**: readonly `string`[]
-
-If your feature exposes a client-side application (most of them do!), then you can control access to them here.
-
-**`example`**
-```ts
- {
- app: ['my-app', 'kibana']
- }
-```
-
-#### Inherited from
-
-Omit.app
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:76
-
-___
-
-### cases
-
-• `Optional` **cases**: `Object`
-
-If your feature requires access to specific owners of cases (aka plugins that have created cases), then specify your access needs here. The values here should
-be unique identifiers for the owners of cases you want access to.
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `all?` | readonly `string`[] | List of case owners which users should have full read/write access to when granted this privilege. **`example`** ```ts { all: ['securitySolution'] } ``` |
-| `read?` | readonly `string`[] | List of case owners which users should have read-only access to when granted this privilege. **`example`** ```ts { read: ['securitySolution'] } ``` |
-
-#### Inherited from
-
-Omit.cases
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:132
-
-___
-
-### catalogue
-
-• `Optional` **catalogue**: readonly `string`[]
-
-If this feature includes a catalogue entry, you can specify them here to control visibility based on user permissions.
-
-#### Inherited from
-
-Omit.catalogue
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:37
-
-___
-
-### disabled
-
-• `Optional` **disabled**: `boolean`
-
-Whether or not this privilege should be hidden in the roles UI and disallowed on the API. Defaults to `false`.
-
-**`deprecated`**
-
-#### Inherited from
-
-Omit.disabled
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:18
-
-___
-
-### id
-
-• **id**: `string`
-
-Identifier for this privilege. Must be unique across all other privileges within a feature.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:47
-
-___
-
-### includeIn
-
-• **includeIn**: ``"all"`` \| ``"none"`` \| ``"read"``
-
-Denotes which Primary Feature Privilege this sub-feature privilege should be included in.
-`read` is also included in `all` automatically.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:56
-
-___
-
-### management
-
-• `Optional` **management**: `Object`
-
-If this feature includes management sections, you can specify them here to control visibility of those
-pages based on user privileges.
-
-**`example`**
-```ts
- // Enables access to the "Advanced Settings" management page within the Kibana section
- management: {
- kibana: ['settings']
- }
-```
-
-#### Index signature
-
-▪ [sectionId: `string`]: readonly `string`[]
-
-#### Inherited from
-
-Omit.management
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:31
-
-___
-
-### minimumLicense
-
-• `Optional` **minimumLicense**: ``"basic"`` \| ``"standard"`` \| ``"gold"`` \| ``"platinum"`` \| ``"enterprise"`` \| ``"trial"``
-
-The minimum supported license level for this sub-feature privilege.
-If no license level is supplied, then this privilege will be available for all licences
-that are valid for the overall feature.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:62
-
-___
-
-### name
-
-• **name**: `string`
-
-The display name for this privilege.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:51
-
-___
-
-### requireAllSpaces
-
-• `Optional` **requireAllSpaces**: `boolean`
-
-Whether or not this privilege should only be granted to `All Spaces *`. Should be used for features that do not
-support Spaces. Defaults to `false`.
-
-#### Inherited from
-
-Omit.requireAllSpaces
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:13
-
-___
-
-### savedObject
-
-• **savedObject**: `Object`
-
-If your feature requires access to specific saved objects, then specify your access needs here.
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `all` | readonly `string`[] | List of saved object types which users should have full read/write access to when granted this privilege. **`example`** ```ts { all: ['my-saved-object-type'] } ``` |
-| `read` | readonly `string`[] | List of saved object types which users should have read-only access to when granted this privilege. **`example`** ```ts { read: ['config'] } ``` |
-
-#### Inherited from
-
-Omit.savedObject
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:157
-
-___
-
-### ui
-
-• **ui**: readonly `string`[]
-
-A list of UI Capabilities that should be granted to users with this privilege.
-These capabilities will automatically be namespaces within your feature id.
-
-**`example`**
-```ts
- {
- ui: ['show', 'save']
- }
-
- This translates in the UI to the following (assuming a feature id of "foo"):
- import { uiCapabilities } from 'ui/capabilities';
-
- const canShowApp = uiCapabilities.foo.show;
- const canSave = uiCapabilities.foo.save;
-```
-Note: Since these are automatically namespaced, you are free to use generic names like "show" and "save".
-
-**`see`** UICapabilities
-
-#### Inherited from
-
-Omit.ui
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/feature_kibana_privileges.d.ts:199
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeaturePrivilegeGroupConfig.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeaturePrivilegeGroupConfig.md
deleted file mode 100644
index 28dcebc6af10c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.SubFeaturePrivilegeGroupConfig.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / SubFeaturePrivilegeGroupConfig
-
-# Interface: SubFeaturePrivilegeGroupConfig
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).SubFeaturePrivilegeGroupConfig
-
-Configuration for a sub-feature privilege group.
-
-## Table of contents
-
-### Properties
-
-- [groupType](client._internal_namespace.SubFeaturePrivilegeGroupConfig.md#grouptype)
-- [privileges](client._internal_namespace.SubFeaturePrivilegeGroupConfig.md#privileges)
-
-## Properties
-
-### groupType
-
-• **groupType**: [`SubFeaturePrivilegeGroupType`](../modules/client._internal_namespace.md#subfeatureprivilegegrouptype)
-
-The type of privilege group.
-- `mutually_exclusive`::
- Users will be able to select at most one privilege within this group.
- Privileges must be specified in descending order of permissiveness (e.g. `All`, `Read`, not `Read`, `All)
-- `independent`::
- Users will be able to select any combination of privileges within this group.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:34
-
-___
-
-### privileges
-
-• **privileges**: readonly [`SubFeaturePrivilegeConfig`](client._internal_namespace.SubFeaturePrivilegeConfig.md)[]
-
-The privileges which belong to this group.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:38
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskInfo.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskInfo.md
deleted file mode 100644
index 56843b1283c19..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskInfo.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskInfo
-
-# Interface: TaskInfo
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskInfo
-
-## Table of contents
-
-### Properties
-
-- [attempts](client._internal_namespace.TaskInfo.md#attempts)
-- [scheduled](client._internal_namespace.TaskInfo.md#scheduled)
-
-## Properties
-
-### attempts
-
-• **attempts**: `number`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:22
-
-___
-
-### scheduled
-
-• **scheduled**: `Date`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:21
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskInstance.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskInstance.md
deleted file mode 100644
index 4cea61eafbdb2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskInstance.md
+++ /dev/null
@@ -1,199 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskInstance
-
-# Interface: TaskInstance
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskInstance
-
-## Hierarchy
-
-- **`TaskInstance`**
-
- ↳ [`ConcreteTaskInstance`](client._internal_namespace.ConcreteTaskInstance.md)
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.TaskInstance.md#id)
-- [ownerId](client._internal_namespace.TaskInstance.md#ownerid)
-- [params](client._internal_namespace.TaskInstance.md#params)
-- [retryAt](client._internal_namespace.TaskInstance.md#retryat)
-- [runAt](client._internal_namespace.TaskInstance.md#runat)
-- [schedule](client._internal_namespace.TaskInstance.md#schedule)
-- [scheduledAt](client._internal_namespace.TaskInstance.md#scheduledat)
-- [scope](client._internal_namespace.TaskInstance.md#scope)
-- [startedAt](client._internal_namespace.TaskInstance.md#startedat)
-- [state](client._internal_namespace.TaskInstance.md#state)
-- [taskType](client._internal_namespace.TaskInstance.md#tasktype)
-- [traceparent](client._internal_namespace.TaskInstance.md#traceparent)
-- [user](client._internal_namespace.TaskInstance.md#user)
-
-## Properties
-
-### id
-
-• `Optional` **id**: `string`
-
-Optional ID that can be passed by the caller. When ID is undefined, ES
-will auto-generate a unique id. Otherwise, ID will be used to either
-create a new document, or update existing document
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:145
-
-___
-
-### ownerId
-
-• `Optional` **ownerId**: ``null`` \| `string`
-
-The random uuid of the Kibana instance which claimed ownership of the task last
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:205
-
-___
-
-### params
-
-• **params**: `Record`<`string`, `any`\>
-
-A task-specific set of parameters, used by the task's run function to tailor
-its work. This is generally user-input, such as { sms: '333-444-2222' }.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:182
-
-___
-
-### retryAt
-
-• `Optional` **retryAt**: ``null`` \| `Date`
-
-The date and time that this task should re-execute if stuck in "running" / timeout
-status. This value is only set when status is set to "running".
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:165
-
-___
-
-### runAt
-
-• `Optional` **runAt**: `Date`
-
-The date and time that this task is scheduled to be run. It is not
-guaranteed to run at this time, but it is guaranteed not to run earlier
-than this. Defaults to immediately.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:171
-
-___
-
-### schedule
-
-• `Optional` **schedule**: [`IntervalSchedule`](client._internal_namespace.IntervalSchedule.md)
-
-A TaskSchedule string, which specifies this as a recurring task.
-
-Currently, this supports a single format: an interval in minutes or seconds (e.g. '5m', '30s').
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:177
-
-___
-
-### scheduledAt
-
-• `Optional` **scheduledAt**: `Date`
-
-The date and time that this task was originally scheduled. This is used
-for convenience to task run functions, and for troubleshooting.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:154
-
-___
-
-### scope
-
-• `Optional` **scope**: `string`[]
-
-Used to group tasks for querying. So, reporting might schedule tasks with a scope of 'reporting',
-and then query such tasks to provide a glimpse at only reporting tasks, rather than at all tasks.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:201
-
-___
-
-### startedAt
-
-• `Optional` **startedAt**: ``null`` \| `Date`
-
-The date and time that this task started execution. This is used to determine
-the "real" runAt that ended up running the task. This value is only set
-when status is set to "running".
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:160
-
-___
-
-### state
-
-• **state**: `Record`<`string`, `any`\>
-
-The state passed into the task's run function, and returned by the previous
-run. If there was no previous run, or if the previous run did not return
-any state, this will be the empy object: {}
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:188
-
-___
-
-### taskType
-
-• **taskType**: `string`
-
-The task definition type whose run function will execute this instance.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:149
-
-___
-
-### traceparent
-
-• `Optional` **traceparent**: `string`
-
-The serialized traceparent string of the current APM transaction or span.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:192
-
-___
-
-### user
-
-• `Optional` **user**: `string`
-
-The id of the user who scheduled this task.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:196
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskManagerSetupContract.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskManagerSetupContract.md
deleted file mode 100644
index 15c8f2fe2b91e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskManagerSetupContract.md
+++ /dev/null
@@ -1,70 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskManagerSetupContract
-
-# Interface: TaskManagerSetupContract
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskManagerSetupContract
-
-## Table of contents
-
-### Properties
-
-- [index](client._internal_namespace.TaskManagerSetupContract.md#index)
-
-### Methods
-
-- [addMiddleware](client._internal_namespace.TaskManagerSetupContract.md#addmiddleware)
-- [registerTaskDefinitions](client._internal_namespace.TaskManagerSetupContract.md#registertaskdefinitions)
-
-## Properties
-
-### index
-
-• **index**: `string`
-
-**`deprecated`**
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/plugin.d.ts:12
-
-## Methods
-
-### addMiddleware
-
-▸ **addMiddleware**(`middleware`): `void`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `middleware` | [`Middleware`](client._internal_namespace.Middleware.md) |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/plugin.d.ts:13
-
-___
-
-### registerTaskDefinitions
-
-▸ **registerTaskDefinitions**(`taskDefinitions`): `void`
-
-Method for allowing consumers to register task definitions into the system.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `taskDefinitions` | [`TaskDefinitionRegistry`](../modules/client._internal_namespace.md#taskdefinitionregistry) | The Kibana task definitions dictionary |
-
-#### Returns
-
-`void`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/plugin.d.ts:18
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskRegisterDefinition.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskRegisterDefinition.md
deleted file mode 100644
index f5d534feba600..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskRegisterDefinition.md
+++ /dev/null
@@ -1,130 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskRegisterDefinition
-
-# Interface: TaskRegisterDefinition
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskRegisterDefinition
-
-Defines a task which can be scheduled and run by the Kibana
-task manager.
-
-## Table of contents
-
-### Properties
-
-- [createTaskRunner](client._internal_namespace.TaskRegisterDefinition.md#createtaskrunner)
-- [description](client._internal_namespace.TaskRegisterDefinition.md#description)
-- [maxAttempts](client._internal_namespace.TaskRegisterDefinition.md#maxattempts)
-- [maxConcurrency](client._internal_namespace.TaskRegisterDefinition.md#maxconcurrency)
-- [timeout](client._internal_namespace.TaskRegisterDefinition.md#timeout)
-- [title](client._internal_namespace.TaskRegisterDefinition.md#title)
-
-### Methods
-
-- [getRetry](client._internal_namespace.TaskRegisterDefinition.md#getretry)
-
-## Properties
-
-### createTaskRunner
-
-• **createTaskRunner**: [`TaskRunCreatorFunction`](../modules/client._internal_namespace.md#taskruncreatorfunction)
-
-Creates an object that has a run function which performs the task's work,
-and an optional cancel function which cancels the task.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:35
-
-___
-
-### description
-
-• `Optional` **description**: `string`
-
-An optional more detailed description of what this task does.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:22
-
-___
-
-### maxAttempts
-
-• `Optional` **maxAttempts**: `number`
-
-Up to how many times the task should retry when it fails to run. This will
-default to the global variable. The default value, if not specified, is 1.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:40
-
-___
-
-### maxConcurrency
-
-• `Optional` **maxConcurrency**: `number`
-
-The maximum number tasks of this type that can be run concurrently per Kibana instance.
-Setting this value will force Task Manager to poll for this task type separately from other task types
-which can add significant load to the ES cluster, so please use this configuration only when absolutely necessary.
-The default value, if not given, is 0.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:47
-
-___
-
-### timeout
-
-• `Optional` **timeout**: `string`
-
-How long, in minutes or seconds, the system should wait for the task to complete
-before it is considered to be timed out. (e.g. '5m', the default). If
-the task takes longer than this, Kibana will send it a kill command and
-the task will be re-attempted.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:18
-
-___
-
-### title
-
-• `Optional` **title**: `string`
-
-A brief, human-friendly title for this task.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:11
-
-## Methods
-
-### getRetry
-
-▸ `Optional` **getRetry**(`attempts`, `error`): `boolean` \| `Date`
-
-Function that customizes how the task should behave when the task fails. This
-function can return `true`, `false` or a Date. True will tell task manager
-to retry using default delay logic. False will tell task manager to stop retrying
-this task. Date will suggest when to the task manager the task should retry.
-This function isn't used for recurring tasks, those retry as per their configured recurring schedule.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `attempts` | `number` |
-| `error` | `object` |
-
-#### Returns
-
-`boolean` \| `Date`
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:30
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskRunnerContext.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskRunnerContext.md
deleted file mode 100644
index d79cef9c996c1..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TaskRunnerContext.md
+++ /dev/null
@@ -1,89 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TaskRunnerContext
-
-# Interface: TaskRunnerContext
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TaskRunnerContext
-
-## Table of contents
-
-### Properties
-
-- [actionTypeRegistry](client._internal_namespace.TaskRunnerContext.md#actiontyperegistry)
-- [basePathService](client._internal_namespace.TaskRunnerContext.md#basepathservice)
-- [encryptedSavedObjectsClient](client._internal_namespace.TaskRunnerContext.md#encryptedsavedobjectsclient)
-- [logger](client._internal_namespace.TaskRunnerContext.md#logger)
-- [spaceIdToNamespace](client._internal_namespace.TaskRunnerContext.md#spaceidtonamespace)
-
-### Methods
-
-- [getUnsecuredSavedObjectsClient](client._internal_namespace.TaskRunnerContext.md#getunsecuredsavedobjectsclient)
-
-## Properties
-
-### actionTypeRegistry
-
-• **actionTypeRegistry**: [`ActionTypeRegistryContract`](../modules/client._internal_namespace.md#actiontyperegistrycontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:8
-
-___
-
-### basePathService
-
-• **basePathService**: [`IBasePath`](../modules/client._internal_namespace.md#ibasepath)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:11
-
-___
-
-### encryptedSavedObjectsClient
-
-• **encryptedSavedObjectsClient**: [`EncryptedSavedObjectsClient`](client._internal_namespace.EncryptedSavedObjectsClient.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:9
-
-___
-
-### logger
-
-• **logger**: `Logger`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:7
-
-___
-
-### spaceIdToNamespace
-
-• **spaceIdToNamespace**: [`SpaceIdToNamespaceFunction`](../modules/client._internal_namespace.md#spaceidtonamespacefunction)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:10
-
-## Methods
-
-### getUnsecuredSavedObjectsClient
-
-▸ **getUnsecuredSavedObjectsClient**(`request`): [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)<`unknown`, `unknown`, `unknown`, `any`\> |
-
-#### Returns
-
-[`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/task_runner_factory.d.ts:12
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TranslatedUpdateAlertRequest.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TranslatedUpdateAlertRequest.md
deleted file mode 100644
index 0a44beb8592e7..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.TranslatedUpdateAlertRequest.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / TranslatedUpdateAlertRequest
-
-# Interface: TranslatedUpdateAlertRequest
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).TranslatedUpdateAlertRequest
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.TranslatedUpdateAlertRequest.md#id)
-- [index](client._internal_namespace.TranslatedUpdateAlertRequest.md#index)
-- [status](client._internal_namespace.TranslatedUpdateAlertRequest.md#status)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:208](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L208)
-
-___
-
-### index
-
-• **index**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:209](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L209)
-
-___
-
-### status
-
-• **status**: `STATUS_VALUES`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/alerts/index.ts:210](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/alerts/index.ts#L210)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateAlertRequest.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateAlertRequest.md
deleted file mode 100644
index 53ee404bbf12a..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateAlertRequest.md
+++ /dev/null
@@ -1,45 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UpdateAlertRequest
-
-# Interface: UpdateAlertRequest
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UpdateAlertRequest
-
-Defines the fields necessary to update an alert's status.
-
-## Table of contents
-
-### Properties
-
-- [id](client._internal_namespace.UpdateAlertRequest.md#id)
-- [index](client._internal_namespace.UpdateAlertRequest.md#index)
-- [status](client._internal_namespace.UpdateAlertRequest.md#status)
-
-## Properties
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/alerts/types.ts:28](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/alerts/types.ts#L28)
-
-___
-
-### index
-
-• **index**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/alerts/types.ts:29](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/alerts/types.ts#L29)
-
-___
-
-### status
-
-• **status**: [`CaseStatuses`](../enums/client._internal_namespace.CaseStatuses.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/alerts/types.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/alerts/types.ts#L30)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateArgs.md
deleted file mode 100644
index c0f6cf3d0d1a2..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateArgs.md
+++ /dev/null
@@ -1,43 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UpdateArgs
-
-# Interface: UpdateArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UpdateArgs
-
-## Table of contents
-
-### Properties
-
-- [attachmentId](client._internal_namespace.UpdateArgs.md#attachmentid)
-- [options](client._internal_namespace.UpdateArgs.md#options)
-- [updatedAttributes](client._internal_namespace.UpdateArgs.md#updatedattributes)
-
-## Properties
-
-### attachmentId
-
-• **attachmentId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:54](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L54)
-
-___
-
-### options
-
-• `Optional` **options**: [`SavedObjectsUpdateOptions`](client._internal_namespace.SavedObjectsUpdateOptions.md)<{ `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } \| { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } \| { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:56](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L56)
-
-___
-
-### updatedAttributes
-
-• **updatedAttributes**: { `created_at`: `undefined` \| `string` = rt.string; `created_by`: `undefined` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` } = UserRT; `owner`: `undefined` \| `string` = rt.string; `pushed_at`: `undefined` \| ``null`` \| `string` ; `pushed_by`: `undefined` \| ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` } ; `updated_at`: `undefined` \| ``null`` \| `string` ; `updated_by`: `undefined` \| ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` } } & { `alertId`: `undefined` \| `string` \| `string`[] ; `index`: `undefined` \| `string` \| `string`[] ; `owner`: `undefined` \| `string` = rt.string; `rule`: `undefined` \| { `id`: ``null`` \| `string` ; `name`: ``null`` \| `string` } ; `type`: `undefined` \| [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `undefined` \| `string` = rt.string; `created_by`: `undefined` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` } = UserRT; `owner`: `undefined` \| `string` = rt.string; `pushed_at`: `undefined` \| ``null`` \| `string` ; `pushed_by`: `undefined` \| ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` } ; `updated_at`: `undefined` \| ``null`` \| `string` ; `updated_by`: `undefined` \| ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` } }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:55](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L55)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateConnectorMappingsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateConnectorMappingsArgs.md
deleted file mode 100644
index 4af6344e575d6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateConnectorMappingsArgs.md
+++ /dev/null
@@ -1,64 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UpdateConnectorMappingsArgs
-
-# Interface: UpdateConnectorMappingsArgs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UpdateConnectorMappingsArgs
-
-## Hierarchy
-
-- [`ClientArgs`](client._internal_namespace.ClientArgs-2.md)
-
- ↳ **`UpdateConnectorMappingsArgs`**
-
-## Table of contents
-
-### Properties
-
-- [attributes](client._internal_namespace.UpdateConnectorMappingsArgs.md#attributes)
-- [mappingId](client._internal_namespace.UpdateConnectorMappingsArgs.md#mappingid)
-- [references](client._internal_namespace.UpdateConnectorMappingsArgs.md#references)
-- [unsecuredSavedObjectsClient](client._internal_namespace.UpdateConnectorMappingsArgs.md#unsecuredsavedobjectsclient)
-
-## Properties
-
-### attributes
-
-• **attributes**: `Partial`<{ `mappings`: { action\_type: "append" \| "nothing" \| "overwrite"; source: "description" \| "title" \| "comments"; target: string; }[] ; `owner`: `string` = rt.string }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:28](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L28)
-
-___
-
-### mappingId
-
-• **mappingId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:27](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L27)
-
-___
-
-### references
-
-• **references**: [`SavedObjectReference`](client._internal_namespace.SavedObjectReference.md)[]
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:29](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L29)
-
-___
-
-### unsecuredSavedObjectsClient
-
-• **unsecuredSavedObjectsClient**: [`SavedObjectsClientContract`](../modules/client._internal_namespace.md#savedobjectsclientcontract)
-
-#### Inherited from
-
-[ClientArgs](client._internal_namespace.ClientArgs-2.md).[unsecuredSavedObjectsClient](client._internal_namespace.ClientArgs-2.md#unsecuredsavedobjectsclient)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/connector_mappings/index.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/connector_mappings/index.ts#L15)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateOptions-1.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateOptions-1.md
deleted file mode 100644
index cd8125ed13bf5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateOptions-1.md
+++ /dev/null
@@ -1,54 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UpdateOptions
-
-# Interface: UpdateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UpdateOptions
-
-## Table of contents
-
-### Properties
-
-- [expiresAtMillis](client._internal_namespace.UpdateOptions-1.md#expiresatmillis)
-- [id](client._internal_namespace.UpdateOptions-1.md#id)
-- [token](client._internal_namespace.UpdateOptions-1.md#token)
-- [tokenType](client._internal_namespace.UpdateOptions-1.md#tokentype)
-
-## Properties
-
-### expiresAtMillis
-
-• **expiresAtMillis**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:19
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:17
-
-___
-
-### token
-
-• **token**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:18
-
-___
-
-### tokenType
-
-• `Optional` **tokenType**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/builtin_action_types/lib/connector_token_client.d.ts:20
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateOptions.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateOptions.md
deleted file mode 100644
index f1bc374522175..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UpdateOptions.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UpdateOptions
-
-# Interface: UpdateOptions
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UpdateOptions
-
-## Table of contents
-
-### Properties
-
-- [action](client._internal_namespace.UpdateOptions.md#action)
-- [id](client._internal_namespace.UpdateOptions.md#id)
-
-## Properties
-
-### action
-
-• **action**: [`ActionUpdate`](client._internal_namespace.ActionUpdate.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:41
-
-___
-
-### id
-
-• **id**: `string`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/actions_client.d.ts:40
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.User.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.User.md
deleted file mode 100644
index 947805536297f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.User.md
+++ /dev/null
@@ -1,90 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / User
-
-# Interface: User
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).User
-
-## Hierarchy
-
-- **`User`**
-
- ↳ [`AuthenticatedUser`](client._internal_namespace.AuthenticatedUser.md)
-
-## Table of contents
-
-### Properties
-
-- [email](client._internal_namespace.User.md#email)
-- [enabled](client._internal_namespace.User.md#enabled)
-- [full\_name](client._internal_namespace.User.md#full_name)
-- [metadata](client._internal_namespace.User.md#metadata)
-- [roles](client._internal_namespace.User.md#roles)
-- [username](client._internal_namespace.User.md#username)
-
-## Properties
-
-### email
-
-• `Optional` **email**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:3
-
-___
-
-### enabled
-
-• **enabled**: `boolean`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:6
-
-___
-
-### full\_name
-
-• `Optional` **full\_name**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:4
-
-___
-
-### metadata
-
-• `Optional` **metadata**: `Object`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `_deprecated?` | `boolean` |
-| `_deprecated_reason?` | `string` |
-| `_reserved` | `boolean` |
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:7
-
-___
-
-### roles
-
-• **roles**: readonly `string`[]
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:5
-
-___
-
-### username
-
-• **username**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/user.d.ts:2
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UserRealm.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UserRealm.md
deleted file mode 100644
index 2d1d75692a0e0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.UserRealm.md
+++ /dev/null
@@ -1,32 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / UserRealm
-
-# Interface: UserRealm
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).UserRealm
-
-## Table of contents
-
-### Properties
-
-- [name](client._internal_namespace.UserRealm.md#name)
-- [type](client._internal_namespace.UserRealm.md#type)
-
-## Properties
-
-### name
-
-• **name**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authenticated_user.d.ts:4
-
-___
-
-### type
-
-• **type**: `string`
-
-#### Defined in
-
-x-pack/plugins/security/target/types/common/model/authenticated_user.d.ts:5
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ValidatorType.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ValidatorType.md
deleted file mode 100644
index c771a20cde115..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.ValidatorType.md
+++ /dev/null
@@ -1,37 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / ValidatorType
-
-# Interface: ValidatorType
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).ValidatorType
-
-## Type parameters
-
-| Name |
-| :------ |
-| `Type` |
-
-## Table of contents
-
-### Methods
-
-- [validate](client._internal_namespace.ValidatorType.md#validate)
-
-## Methods
-
-### validate
-
-▸ **validate**(`value`): `Type`
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `value` | `unknown` |
-
-#### Returns
-
-`Type`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:64
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Verbs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Verbs.md
deleted file mode 100644
index 6234a71241e99..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/client._internal_namespace.Verbs.md
+++ /dev/null
@@ -1,45 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](../modules/client.md) / [\_internal\_namespace](../modules/client._internal_namespace.md) / Verbs
-
-# Interface: Verbs
-
-[client](../modules/client.md).[_internal_namespace](../modules/client._internal_namespace.md).Verbs
-
-The tenses for describing the action performed by a API route
-
-## Table of contents
-
-### Properties
-
-- [past](client._internal_namespace.Verbs.md#past)
-- [present](client._internal_namespace.Verbs.md#present)
-- [progressive](client._internal_namespace.Verbs.md#progressive)
-
-## Properties
-
-### past
-
-• **past**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:18](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L18)
-
-___
-
-### present
-
-• **present**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:16](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L16)
-
-___
-
-### progressive
-
-• **progressive**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:17](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L17)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.CreateMappingsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.CreateMappingsArgs.md
deleted file mode 100644
index 14e3f0fc93459..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.CreateMappingsArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [configure/client](../modules/configure_client.md) / [\_internal\_namespace](../modules/configure_client._internal_namespace.md) / CreateMappingsArgs
-
-# Interface: CreateMappingsArgs
-
-[configure/client](../modules/configure_client.md).[_internal_namespace](../modules/configure_client._internal_namespace.md).CreateMappingsArgs
-
-## Hierarchy
-
-- [`MappingsArgs`](configure_client._internal_namespace.MappingsArgs.md)
-
- ↳ **`CreateMappingsArgs`**
-
-## Table of contents
-
-### Properties
-
-- [connector](configure_client._internal_namespace.CreateMappingsArgs.md#connector)
-- [owner](configure_client._internal_namespace.CreateMappingsArgs.md#owner)
-
-## Properties
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string }
-
-#### Inherited from
-
-[MappingsArgs](configure_client._internal_namespace.MappingsArgs.md).[connector](configure_client._internal_namespace.MappingsArgs.md#connector)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/types.ts:11](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/types.ts#L11)
-
-___
-
-### owner
-
-• **owner**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/types.ts:15](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/types.ts#L15)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.MappingsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.MappingsArgs.md
deleted file mode 100644
index b21de0e3f9018..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.MappingsArgs.md
+++ /dev/null
@@ -1,29 +0,0 @@
-[Cases Client API Interface](../README.md) / [configure/client](../modules/configure_client.md) / [\_internal\_namespace](../modules/configure_client._internal_namespace.md) / MappingsArgs
-
-# Interface: MappingsArgs
-
-[configure/client](../modules/configure_client.md).[_internal_namespace](../modules/configure_client._internal_namespace.md).MappingsArgs
-
-## Hierarchy
-
-- **`MappingsArgs`**
-
- ↳ [`CreateMappingsArgs`](configure_client._internal_namespace.CreateMappingsArgs.md)
-
- ↳ [`UpdateMappingsArgs`](configure_client._internal_namespace.UpdateMappingsArgs.md)
-
-## Table of contents
-
-### Properties
-
-- [connector](configure_client._internal_namespace.MappingsArgs.md#connector)
-
-## Properties
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/types.ts:11](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/types.ts#L11)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.UpdateMappingsArgs.md b/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.UpdateMappingsArgs.md
deleted file mode 100644
index e81c67f5bd4a0..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client._internal_namespace.UpdateMappingsArgs.md
+++ /dev/null
@@ -1,42 +0,0 @@
-[Cases Client API Interface](../README.md) / [configure/client](../modules/configure_client.md) / [\_internal\_namespace](../modules/configure_client._internal_namespace.md) / UpdateMappingsArgs
-
-# Interface: UpdateMappingsArgs
-
-[configure/client](../modules/configure_client.md).[_internal_namespace](../modules/configure_client._internal_namespace.md).UpdateMappingsArgs
-
-## Hierarchy
-
-- [`MappingsArgs`](configure_client._internal_namespace.MappingsArgs.md)
-
- ↳ **`UpdateMappingsArgs`**
-
-## Table of contents
-
-### Properties
-
-- [connector](configure_client._internal_namespace.UpdateMappingsArgs.md#connector)
-- [mappingId](configure_client._internal_namespace.UpdateMappingsArgs.md#mappingid)
-
-## Properties
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string }
-
-#### Inherited from
-
-[MappingsArgs](configure_client._internal_namespace.MappingsArgs.md).[connector](configure_client._internal_namespace.MappingsArgs.md#connector)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/types.ts:11](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/types.ts#L11)
-
-___
-
-### mappingId
-
-• **mappingId**: `string`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/types.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/types.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client.configuresubclient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client.configuresubclient.md
deleted file mode 100644
index 393957ba1c7f5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/configure_client.configuresubclient.md
+++ /dev/null
@@ -1,100 +0,0 @@
-[Cases Client API Interface](../README.md) / [configure/client](../modules/configure_client.md) / ConfigureSubClient
-
-# Interface: ConfigureSubClient
-
-[configure/client](../modules/configure_client.md).ConfigureSubClient
-
-This is the public API for interacting with the connector configuration for cases.
-
-## Table of contents
-
-### Methods
-
-- [create](configure_client.ConfigureSubClient.md#create)
-- [get](configure_client.ConfigureSubClient.md#get)
-- [getConnectors](configure_client.ConfigureSubClient.md#getconnectors)
-- [update](configure_client.ConfigureSubClient.md#update)
-
-## Methods
-
-### create
-
-▸ **create**(`configuration`): `Promise`<[`ICasesConfigureResponse`](typedoc_interfaces.ICasesConfigureResponse.md)\>
-
-Creates a configuration if one does not already exist. If one exists it is deleted and a new one is created.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `configuration` | [`ICasesConfigureRequest`](typedoc_interfaces.ICasesConfigureRequest.md) |
-
-#### Returns
-
-`Promise`<[`ICasesConfigureResponse`](typedoc_interfaces.ICasesConfigureResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/client.ts:93](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/client.ts#L93)
-
-___
-
-### get
-
-▸ **get**(`params`): `Promise`<{} \| [`ICasesConfigureResponse`](typedoc_interfaces.ICasesConfigureResponse.md)\>
-
-Retrieves the external connector configuration for a particular case owner.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Object` |
-| `params.owner` | `undefined` \| `string` \| `string`[] |
-
-#### Returns
-
-`Promise`<{} \| [`ICasesConfigureResponse`](typedoc_interfaces.ICasesConfigureResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/client.ts:75](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/client.ts#L75)
-
-___
-
-### getConnectors
-
-▸ **getConnectors**(): `Promise`<[`FindActionResult`](client._internal_namespace.FindActionResult.md)[]\>
-
-Retrieves the valid external connectors supported by the cases plugin.
-
-#### Returns
-
-`Promise`<[`FindActionResult`](client._internal_namespace.FindActionResult.md)[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/client.ts:79](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/client.ts#L79)
-
-___
-
-### update
-
-▸ **update**(`configurationId`, `configurations`): `Promise`<[`ICasesConfigureResponse`](typedoc_interfaces.ICasesConfigureResponse.md)\>
-
-Updates a particular configuration with new values.
-
-#### Parameters
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `configurationId` | `string` | the ID of the configuration to update |
-| `configurations` | [`ICasesConfigurePatch`](typedoc_interfaces.ICasesConfigurePatch.md) | the new configuration parameters |
-
-#### Returns
-
-`Promise`<[`ICasesConfigureResponse`](typedoc_interfaces.ICasesConfigureResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/client.ts:86](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/client.ts#L86)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/metrics_client.MetricsSubClient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/metrics_client.MetricsSubClient.md
deleted file mode 100644
index c59b437c7f23e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/metrics_client.MetricsSubClient.md
+++ /dev/null
@@ -1,33 +0,0 @@
-[Cases Client API Interface](../README.md) / [metrics/client](../modules/metrics_client.md) / MetricsSubClient
-
-# Interface: MetricsSubClient
-
-[metrics/client](../modules/metrics_client.md).MetricsSubClient
-
-API for interacting with the metrics.
-
-## Table of contents
-
-### Methods
-
-- [getCaseMetrics](metrics_client.MetricsSubClient.md#getcasemetrics)
-
-## Methods
-
-### getCaseMetrics
-
-▸ **getCaseMetrics**(`params`): `Promise`<{ `actions`: `undefined` \| { isolateHost?: { isolate: { total: number; }; unisolate: { total: number; }; } \| undefined; } ; `alerts`: `undefined` \| { count?: number \| undefined; hosts?: { total: number; values: { name: string \| undefined; id: string; count: number; }[]; } \| undefined; users?: { total: number; values: { name: string; count: number; }[]; } \| undefined; } ; `connectors`: `undefined` \| { `total`: `number` = rt.number } ; `lifespan`: `undefined` \| { `closeDate`: ``null`` \| `string` ; `creationDate`: `string` = rt.string; `statusInfo`: { openDuration: number; inProgressDuration: number; reopenDates: string[]; } = StatusInfoRt } }\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | [`CaseMetricsParams`](metrics_client._internal_namespace.CaseMetricsParams.md) |
-
-#### Returns
-
-`Promise`<{ `actions`: `undefined` \| { isolateHost?: { isolate: { total: number; }; unisolate: { total: number; }; } \| undefined; } ; `alerts`: `undefined` \| { count?: number \| undefined; hosts?: { total: number; values: { name: string \| undefined; id: string; count: number; }[]; } \| undefined; users?: { total: number; values: { name: string; count: number; }[]; } \| undefined; } ; `connectors`: `undefined` \| { `total`: `number` = rt.number } ; `lifespan`: `undefined` \| { `closeDate`: ``null`` \| `string` ; `creationDate`: `string` = rt.string; `statusInfo`: { openDuration: number; inProgressDuration: number; reopenDates: string[]; } = StatusInfoRt } }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/client.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/client.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/metrics_client._internal_namespace.CaseMetricsParams.md b/x-pack/plugins/cases/docs/cases_client/interfaces/metrics_client._internal_namespace.CaseMetricsParams.md
deleted file mode 100644
index 8f03bed67e646..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/metrics_client._internal_namespace.CaseMetricsParams.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Cases Client API Interface](../README.md) / [metrics/client](../modules/metrics_client.md) / [\_internal\_namespace](../modules/metrics_client._internal_namespace.md) / CaseMetricsParams
-
-# Interface: CaseMetricsParams
-
-[metrics/client](../modules/metrics_client.md).[_internal_namespace](../modules/metrics_client._internal_namespace.md).CaseMetricsParams
-
-## Table of contents
-
-### Properties
-
-- [caseId](metrics_client._internal_namespace.CaseMetricsParams.md#caseid)
-- [features](metrics_client._internal_namespace.CaseMetricsParams.md#features)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-The ID of the case.
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/get_case_metrics.ts:26](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/get_case_metrics.ts#L26)
-
-___
-
-### features
-
-• **features**: `string`[]
-
-The metrics to retrieve.
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/get_case_metrics.ts:30](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/get_case_metrics.ts#L30)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/stats_client.statssubclient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/stats_client.statssubclient.md
deleted file mode 100644
index 37dab1782ee06..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/stats_client.statssubclient.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Cases Client API Interface](../README.md) / [stats/client](../modules/stats_client.md) / StatsSubClient
-
-# Interface: StatsSubClient
-
-[stats/client](../modules/stats_client.md).StatsSubClient
-
-Statistics API contract.
-
-## Table of contents
-
-### Methods
-
-- [getStatusTotalsByType](stats_client.StatsSubClient.md#getstatustotalsbytype)
-
-## Methods
-
-### getStatusTotalsByType
-
-▸ **getStatusTotalsByType**(`params`): `Promise`<{ `count_closed_cases`: `number` = rt.number; `count_in_progress_cases`: `number` = rt.number; `count_open_cases`: `number` = rt.number }\>
-
-Retrieves the total number of open, closed, and in-progress cases.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Object` |
-| `params.owner` | `undefined` \| `string` \| `string`[] |
-
-#### Returns
-
-`Promise`<{ `count_closed_cases`: `number` = rt.number; `count_in_progress_cases`: `number` = rt.number; `count_open_cases`: `number` = rt.number }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/stats/client.ts:34](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/stats/client.ts#L34)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.ICaseResolveResponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.ICaseResolveResponse.md
deleted file mode 100644
index a428247ab70ba..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.ICaseResolveResponse.md
+++ /dev/null
@@ -1,49 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICaseResolveResponse
-
-# Interface: ICaseResolveResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICaseResolveResponse
-
-## Hierarchy
-
-- [`CaseResolveResponse`](../modules/typedoc_interfaces._internal_namespace.md#caseresolveresponse)
-
- ↳ **`ICaseResolveResponse`**
-
-## Table of contents
-
-### Properties
-
-- [alias\_target\_id](typedoc_interfaces.ICaseResolveResponse.md#alias_target_id)
-- [case](typedoc_interfaces.ICaseResolveResponse.md#case)
-- [outcome](typedoc_interfaces.ICaseResolveResponse.md#outcome)
-
-## Properties
-
-### alias\_target\_id
-
-• **alias\_target\_id**: `undefined` \| `string` = `rt.string`
-
-#### Inherited from
-
-CaseResolveResponse.alias\_target\_id
-
-___
-
-### case
-
-• **case**: { `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `totalAlerts`: `number` = rt.number; `totalComment`: `number` = rt.number; `version`: `string` = rt.string } & { `comments`: `undefined` \| { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }[] } = `CaseResponseRt`
-
-#### Inherited from
-
-CaseResolveResponse.case
-
-___
-
-### outcome
-
-• **outcome**: ``"exactMatch"`` \| ``"aliasMatch"`` \| ``"conflict"``
-
-#### Inherited from
-
-CaseResolveResponse.outcome
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.iallcommentsresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.iallcommentsresponse.md
deleted file mode 100644
index e4d0d7cdaa594..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.iallcommentsresponse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / IAllCommentsResponse
-
-# Interface: IAllCommentsResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).IAllCommentsResponse
-
-## Hierarchy
-
-- [`AllCommentsResponse`](../modules/typedoc_interfaces._internal_namespace.md#allcommentsresponse)
-
- ↳ **`IAllCommentsResponse`**
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasepostrequest.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasepostrequest.md
deleted file mode 100644
index bcca7301539f5..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasepostrequest.md
+++ /dev/null
@@ -1,91 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasePostRequest
-
-# Interface: ICasePostRequest
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasePostRequest
-
-These are simply to make typedoc not attempt to expand the type aliases. If it attempts to expand them
-the docs are huge.
-
-## Hierarchy
-
-- [`CasePostRequest`](../modules/typedoc_interfaces._internal_namespace.md#casepostrequest)
-
- ↳ **`ICasePostRequest`**
-
-## Table of contents
-
-### Properties
-
-- [connector](typedoc_interfaces.ICasePostRequest.md#connector)
-- [description](typedoc_interfaces.ICasePostRequest.md#description)
-- [owner](typedoc_interfaces.ICasePostRequest.md#owner)
-- [settings](typedoc_interfaces.ICasePostRequest.md#settings)
-- [tags](typedoc_interfaces.ICasePostRequest.md#tags)
-- [title](typedoc_interfaces.ICasePostRequest.md#title)
-
-## Properties
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } = `CaseConnectorRt`
-
-#### Inherited from
-
-CasePostRequest.connector
-
-___
-
-### description
-
-• **description**: `string` = `rt.string`
-
-#### Inherited from
-
-CasePostRequest.description
-
-___
-
-### owner
-
-• **owner**: `string` = `rt.string`
-
-#### Inherited from
-
-CasePostRequest.owner
-
-___
-
-### settings
-
-• **settings**: `Object` = `SettingsRt`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `syncAlerts` | `boolean` |
-
-#### Inherited from
-
-CasePostRequest.settings
-
-___
-
-### tags
-
-• **tags**: `string`[]
-
-#### Inherited from
-
-CasePostRequest.tags
-
-___
-
-### title
-
-• **title**: `string` = `rt.string`
-
-#### Inherited from
-
-CasePostRequest.title
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icaseresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icaseresponse.md
deleted file mode 100644
index 5a323c8095768..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icaseresponse.md
+++ /dev/null
@@ -1,239 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICaseResponse
-
-# Interface: ICaseResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICaseResponse
-
-## Hierarchy
-
-- [`CaseResponse`](../modules/typedoc_interfaces._internal_namespace.md#caseresponse)
-
- ↳ **`ICaseResponse`**
-
-## Table of contents
-
-### Properties
-
-- [closed\_at](typedoc_interfaces.ICaseResponse.md#closed_at)
-- [closed\_by](typedoc_interfaces.ICaseResponse.md#closed_by)
-- [comments](typedoc_interfaces.ICaseResponse.md#comments)
-- [connector](typedoc_interfaces.ICaseResponse.md#connector)
-- [created\_at](typedoc_interfaces.ICaseResponse.md#created_at)
-- [created\_by](typedoc_interfaces.ICaseResponse.md#created_by)
-- [description](typedoc_interfaces.ICaseResponse.md#description)
-- [external\_service](typedoc_interfaces.ICaseResponse.md#external_service)
-- [id](typedoc_interfaces.ICaseResponse.md#id)
-- [owner](typedoc_interfaces.ICaseResponse.md#owner)
-- [settings](typedoc_interfaces.ICaseResponse.md#settings)
-- [status](typedoc_interfaces.ICaseResponse.md#status)
-- [tags](typedoc_interfaces.ICaseResponse.md#tags)
-- [title](typedoc_interfaces.ICaseResponse.md#title)
-- [totalAlerts](typedoc_interfaces.ICaseResponse.md#totalalerts)
-- [totalComment](typedoc_interfaces.ICaseResponse.md#totalcomment)
-- [updated\_at](typedoc_interfaces.ICaseResponse.md#updated_at)
-- [updated\_by](typedoc_interfaces.ICaseResponse.md#updated_by)
-- [version](typedoc_interfaces.ICaseResponse.md#version)
-
-## Properties
-
-### closed\_at
-
-• **closed\_at**: ``null`` \| `string`
-
-#### Inherited from
-
-CaseResponse.closed\_at
-
-___
-
-### closed\_by
-
-• **closed\_by**: ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` }
-
-#### Inherited from
-
-CaseResponse.closed\_by
-
-___
-
-### comments
-
-• **comments**: `undefined` \| { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }[]
-
-#### Inherited from
-
-CaseResponse.comments
-
-___
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } = `CaseConnectorRt`
-
-#### Inherited from
-
-CaseResponse.connector
-
-___
-
-### created\_at
-
-• **created\_at**: `string` = `rt.string`
-
-#### Inherited from
-
-CaseResponse.created\_at
-
-___
-
-### created\_by
-
-• **created\_by**: `Object` = `UserRT`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Inherited from
-
-CaseResponse.created\_by
-
-___
-
-### description
-
-• **description**: `string` = `rt.string`
-
-#### Inherited from
-
-CaseResponse.description
-
-___
-
-### external\_service
-
-• **external\_service**: ``null`` \| { `connector_id`: `string` = rt.string } & { `connector_name`: `string` = rt.string; `external_id`: `string` = rt.string; `external_title`: `string` = rt.string; `external_url`: `string` = rt.string; `pushed_at`: `string` = rt.string; `pushed_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT } = `CaseFullExternalServiceRt`
-
-#### Inherited from
-
-CaseResponse.external\_service
-
-___
-
-### id
-
-• **id**: `string` = `rt.string`
-
-#### Inherited from
-
-CaseResponse.id
-
-___
-
-### owner
-
-• **owner**: `string` = `rt.string`
-
-#### Inherited from
-
-CaseResponse.owner
-
-___
-
-### settings
-
-• **settings**: `Object` = `SettingsRt`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `syncAlerts` | `boolean` |
-
-#### Inherited from
-
-CaseResponse.settings
-
-___
-
-### status
-
-• **status**: `CaseStatuses` = `CaseStatusRt`
-
-#### Inherited from
-
-CaseResponse.status
-
-___
-
-### tags
-
-• **tags**: `string`[]
-
-#### Inherited from
-
-CaseResponse.tags
-
-___
-
-### title
-
-• **title**: `string` = `rt.string`
-
-#### Inherited from
-
-CaseResponse.title
-
-___
-
-### totalAlerts
-
-• **totalAlerts**: `number` = `rt.number`
-
-#### Inherited from
-
-CaseResponse.totalAlerts
-
-___
-
-### totalComment
-
-• **totalComment**: `number` = `rt.number`
-
-#### Inherited from
-
-CaseResponse.totalComment
-
-___
-
-### updated\_at
-
-• **updated\_at**: ``null`` \| `string`
-
-#### Inherited from
-
-CaseResponse.updated\_at
-
-___
-
-### updated\_by
-
-• **updated\_by**: ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` }
-
-#### Inherited from
-
-CaseResponse.updated\_by
-
-___
-
-### version
-
-• **version**: `string` = `rt.string`
-
-#### Inherited from
-
-CaseResponse.version
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigurepatch.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigurepatch.md
deleted file mode 100644
index b645740febc08..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigurepatch.md
+++ /dev/null
@@ -1,49 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesConfigurePatch
-
-# Interface: ICasesConfigurePatch
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesConfigurePatch
-
-## Hierarchy
-
-- [`CasesConfigurePatch`](../modules/typedoc_interfaces._internal_namespace.md#casesconfigurepatch)
-
- ↳ **`ICasesConfigurePatch`**
-
-## Table of contents
-
-### Properties
-
-- [closure\_type](typedoc_interfaces.ICasesConfigurePatch.md#closure_type)
-- [connector](typedoc_interfaces.ICasesConfigurePatch.md#connector)
-- [version](typedoc_interfaces.ICasesConfigurePatch.md#version)
-
-## Properties
-
-### closure\_type
-
-• **closure\_type**: `undefined` \| ``"close-by-user"`` \| ``"close-by-pushing"`` = `ClosureTypeRT`
-
-#### Inherited from
-
-CasesConfigurePatch.closure\_type
-
-___
-
-### connector
-
-• **connector**: `undefined` \| { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } = `CaseConnectorRt`
-
-#### Inherited from
-
-CasesConfigurePatch.connector
-
-___
-
-### version
-
-• **version**: `string` = `rt.string`
-
-#### Inherited from
-
-CasesConfigurePatch.version
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigurerequest.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigurerequest.md
deleted file mode 100644
index 5dc7249d20f57..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigurerequest.md
+++ /dev/null
@@ -1,49 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesConfigureRequest
-
-# Interface: ICasesConfigureRequest
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesConfigureRequest
-
-## Hierarchy
-
-- [`CasesConfigureRequest`](../modules/typedoc_interfaces._internal_namespace.md#casesconfigurerequest)
-
- ↳ **`ICasesConfigureRequest`**
-
-## Table of contents
-
-### Properties
-
-- [closure\_type](typedoc_interfaces.ICasesConfigureRequest.md#closure_type)
-- [connector](typedoc_interfaces.ICasesConfigureRequest.md#connector)
-- [owner](typedoc_interfaces.ICasesConfigureRequest.md#owner)
-
-## Properties
-
-### closure\_type
-
-• **closure\_type**: ``"close-by-user"`` \| ``"close-by-pushing"`` = `ClosureTypeRT`
-
-#### Inherited from
-
-CasesConfigureRequest.closure\_type
-
-___
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } = `CaseConnectorRt`
-
-#### Inherited from
-
-CasesConfigureRequest.connector
-
-___
-
-### owner
-
-• **owner**: `string` = `rt.string`
-
-#### Inherited from
-
-CasesConfigureRequest.owner
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigureresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigureresponse.md
deleted file mode 100644
index 20754bcaa22b6..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesconfigureresponse.md
+++ /dev/null
@@ -1,145 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesConfigureResponse
-
-# Interface: ICasesConfigureResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesConfigureResponse
-
-## Hierarchy
-
-- [`CasesConfigureResponse`](../modules/typedoc_interfaces._internal_namespace.md#casesconfigureresponse)
-
- ↳ **`ICasesConfigureResponse`**
-
-## Table of contents
-
-### Properties
-
-- [closure\_type](typedoc_interfaces.ICasesConfigureResponse.md#closure_type)
-- [connector](typedoc_interfaces.ICasesConfigureResponse.md#connector)
-- [created\_at](typedoc_interfaces.ICasesConfigureResponse.md#created_at)
-- [created\_by](typedoc_interfaces.ICasesConfigureResponse.md#created_by)
-- [error](typedoc_interfaces.ICasesConfigureResponse.md#error)
-- [id](typedoc_interfaces.ICasesConfigureResponse.md#id)
-- [mappings](typedoc_interfaces.ICasesConfigureResponse.md#mappings)
-- [owner](typedoc_interfaces.ICasesConfigureResponse.md#owner)
-- [updated\_at](typedoc_interfaces.ICasesConfigureResponse.md#updated_at)
-- [updated\_by](typedoc_interfaces.ICasesConfigureResponse.md#updated_by)
-- [version](typedoc_interfaces.ICasesConfigureResponse.md#version)
-
-## Properties
-
-### closure\_type
-
-• **closure\_type**: ``"close-by-user"`` \| ``"close-by-pushing"`` = `ClosureTypeRT`
-
-#### Inherited from
-
-CasesConfigureResponse.closure\_type
-
-___
-
-### connector
-
-• **connector**: { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } = `CaseConnectorRt`
-
-#### Inherited from
-
-CasesConfigureResponse.connector
-
-___
-
-### created\_at
-
-• **created\_at**: `string` = `rt.string`
-
-#### Inherited from
-
-CasesConfigureResponse.created\_at
-
-___
-
-### created\_by
-
-• **created\_by**: `Object` = `UserRT`
-
-#### Type declaration
-
-| Name | Type |
-| :------ | :------ |
-| `email` | `undefined` \| ``null`` \| `string` |
-| `full_name` | `undefined` \| ``null`` \| `string` |
-| `username` | `undefined` \| ``null`` \| `string` |
-
-#### Inherited from
-
-CasesConfigureResponse.created\_by
-
-___
-
-### error
-
-• **error**: ``null`` \| `string`
-
-#### Inherited from
-
-CasesConfigureResponse.error
-
-___
-
-### id
-
-• **id**: `string` = `rt.string`
-
-#### Inherited from
-
-CasesConfigureResponse.id
-
-___
-
-### mappings
-
-• **mappings**: { `action_type`: ``"append"`` \| ``"nothing"`` \| ``"overwrite"`` = ActionTypeRT; `source`: ``"description"`` \| ``"title"`` \| ``"comments"`` = CaseFieldRT; `target`: `string` = ThirdPartyFieldRT }[]
-
-#### Inherited from
-
-CasesConfigureResponse.mappings
-
-___
-
-### owner
-
-• **owner**: `string` = `rt.string`
-
-#### Inherited from
-
-CasesConfigureResponse.owner
-
-___
-
-### updated\_at
-
-• **updated\_at**: ``null`` \| `string`
-
-#### Inherited from
-
-CasesConfigureResponse.updated\_at
-
-___
-
-### updated\_by
-
-• **updated\_by**: ``null`` \| { `email`: `undefined` \| ``null`` \| `string` ; `full_name`: `undefined` \| ``null`` \| `string` ; `username`: `undefined` \| ``null`` \| `string` }
-
-#### Inherited from
-
-CasesConfigureResponse.updated\_by
-
-___
-
-### version
-
-• **version**: `string` = `rt.string`
-
-#### Inherited from
-
-CasesConfigureResponse.version
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesfindrequest.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesfindrequest.md
deleted file mode 100644
index b9cc22c6eee44..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesfindrequest.md
+++ /dev/null
@@ -1,148 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesFindRequest
-
-# Interface: ICasesFindRequest
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesFindRequest
-
-## Hierarchy
-
-- [`CasesFindRequest`](../modules/client._internal_namespace.md#casesfindrequest)
-
- ↳ **`ICasesFindRequest`**
-
-## Table of contents
-
-### Properties
-
-- [defaultSearchOperator](typedoc_interfaces.ICasesFindRequest.md#defaultsearchoperator)
-- [fields](typedoc_interfaces.ICasesFindRequest.md#fields)
-- [owner](typedoc_interfaces.ICasesFindRequest.md#owner)
-- [page](typedoc_interfaces.ICasesFindRequest.md#page)
-- [perPage](typedoc_interfaces.ICasesFindRequest.md#perpage)
-- [reporters](typedoc_interfaces.ICasesFindRequest.md#reporters)
-- [search](typedoc_interfaces.ICasesFindRequest.md#search)
-- [searchFields](typedoc_interfaces.ICasesFindRequest.md#searchfields)
-- [sortField](typedoc_interfaces.ICasesFindRequest.md#sortfield)
-- [sortOrder](typedoc_interfaces.ICasesFindRequest.md#sortorder)
-- [status](typedoc_interfaces.ICasesFindRequest.md#status)
-- [tags](typedoc_interfaces.ICasesFindRequest.md#tags)
-
-## Properties
-
-### defaultSearchOperator
-
-• **defaultSearchOperator**: `undefined` \| ``"AND"`` \| ``"OR"``
-
-#### Inherited from
-
-CasesFindRequest.defaultSearchOperator
-
-___
-
-### fields
-
-• **fields**: `undefined` \| `string`[]
-
-#### Inherited from
-
-CasesFindRequest.fields
-
-___
-
-### owner
-
-• **owner**: `undefined` \| `string` \| `string`[]
-
-#### Inherited from
-
-CasesFindRequest.owner
-
-___
-
-### page
-
-• **page**: `undefined` \| `number` = `NumberFromString`
-
-#### Inherited from
-
-CasesFindRequest.page
-
-___
-
-### perPage
-
-• **perPage**: `undefined` \| `number` = `NumberFromString`
-
-#### Inherited from
-
-CasesFindRequest.perPage
-
-___
-
-### reporters
-
-• **reporters**: `undefined` \| `string` \| `string`[]
-
-#### Inherited from
-
-CasesFindRequest.reporters
-
-___
-
-### search
-
-• **search**: `undefined` \| `string` = `rt.string`
-
-#### Inherited from
-
-CasesFindRequest.search
-
-___
-
-### searchFields
-
-• **searchFields**: `undefined` \| `string` \| `string`[]
-
-#### Inherited from
-
-CasesFindRequest.searchFields
-
-___
-
-### sortField
-
-• **sortField**: `undefined` \| `string` = `rt.string`
-
-#### Inherited from
-
-CasesFindRequest.sortField
-
-___
-
-### sortOrder
-
-• **sortOrder**: `undefined` \| ``"desc"`` \| ``"asc"``
-
-#### Inherited from
-
-CasesFindRequest.sortOrder
-
-___
-
-### status
-
-• **status**: `undefined` \| [`open`](../enums/client._internal_namespace.CaseStatuses.md#open) \| `any`[`any`] \| [`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed) = `CaseStatusRt`
-
-#### Inherited from
-
-CasesFindRequest.status
-
-___
-
-### tags
-
-• **tags**: `undefined` \| `string` \| `string`[]
-
-#### Inherited from
-
-CasesFindRequest.tags
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesfindresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesfindresponse.md
deleted file mode 100644
index 16b88c29d4d8e..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesfindresponse.md
+++ /dev/null
@@ -1,93 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesFindResponse
-
-# Interface: ICasesFindResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesFindResponse
-
-## Hierarchy
-
-- [`CasesFindResponse`](../modules/typedoc_interfaces._internal_namespace.md#casesfindresponse)
-
- ↳ **`ICasesFindResponse`**
-
-## Table of contents
-
-### Properties
-
-- [cases](typedoc_interfaces.ICasesFindResponse.md#cases)
-- [count\_closed\_cases](typedoc_interfaces.ICasesFindResponse.md#count_closed_cases)
-- [count\_in\_progress\_cases](typedoc_interfaces.ICasesFindResponse.md#count_in_progress_cases)
-- [count\_open\_cases](typedoc_interfaces.ICasesFindResponse.md#count_open_cases)
-- [page](typedoc_interfaces.ICasesFindResponse.md#page)
-- [per\_page](typedoc_interfaces.ICasesFindResponse.md#per_page)
-- [total](typedoc_interfaces.ICasesFindResponse.md#total)
-
-## Properties
-
-### cases
-
-• **cases**: { `connector`: { id: string; } & { type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.none; fields: null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.resilient; fields: { incidentTypes: string[] \| null; severityCode: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowITSM; fields: { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.serviceNowSIR; fields: { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } \| null; } & { name: string; } & { id: string; } & { type: ConnectorTypes.swimlane; fields: { caseId: string \| null; } \| null; } & { name: string; } = CaseConnectorRt; `description`: `string` = rt.string; `owner`: `string` = rt.string; `settings`: { syncAlerts: boolean; } = SettingsRt; `status`: `CaseStatuses` = CaseStatusRt; `tags`: `string`[] ; `title`: `string` = rt.string } & { `closed_at`: ``null`` \| `string` ; `closed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `external_service`: ``null`` \| { connector\_id: string; } & { connector\_name: string; external\_id: string; external\_title: string; external\_url: string; pushed\_at: string; pushed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| ... 1 more ... \| undefined; }; } = CaseFullExternalServiceRt; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `totalAlerts`: `number` = rt.number; `totalComment`: `number` = rt.number; `version`: `string` = rt.string } & { `comments`: `undefined` \| { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }[] }[]
-
-#### Inherited from
-
-CasesFindResponse.cases
-
-___
-
-### count\_closed\_cases
-
-• **count\_closed\_cases**: `number` = `rt.number`
-
-#### Inherited from
-
-CasesFindResponse.count\_closed\_cases
-
-___
-
-### count\_in\_progress\_cases
-
-• **count\_in\_progress\_cases**: `number` = `rt.number`
-
-#### Inherited from
-
-CasesFindResponse.count\_in\_progress\_cases
-
-___
-
-### count\_open\_cases
-
-• **count\_open\_cases**: `number` = `rt.number`
-
-#### Inherited from
-
-CasesFindResponse.count\_open\_cases
-
-___
-
-### page
-
-• **page**: `number` = `rt.number`
-
-#### Inherited from
-
-CasesFindResponse.page
-
-___
-
-### per\_page
-
-• **per\_page**: `number` = `rt.number`
-
-#### Inherited from
-
-CasesFindResponse.per\_page
-
-___
-
-### total
-
-• **total**: `number` = `rt.number`
-
-#### Inherited from
-
-CasesFindResponse.total
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasespatchrequest.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasespatchrequest.md
deleted file mode 100644
index 5cf299204ef13..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasespatchrequest.md
+++ /dev/null
@@ -1,27 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesPatchRequest
-
-# Interface: ICasesPatchRequest
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesPatchRequest
-
-## Hierarchy
-
-- [`CasesPatchRequest`](../modules/typedoc_interfaces._internal_namespace.md#casespatchrequest)
-
- ↳ **`ICasesPatchRequest`**
-
-## Table of contents
-
-### Properties
-
-- [cases](typedoc_interfaces.ICasesPatchRequest.md#cases)
-
-## Properties
-
-### cases
-
-• **cases**: { `connector`: `undefined` \| { `id`: `string` = rt.string } & { `fields`: ``null`` \| { issueType: string \| null; priority: string \| null; parent: string \| null; } ; `type`: [`jira`](../modules/client._internal_namespace.md#jira) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` = rt.null; `type`: [`none`](../modules/client._internal_namespace.md#none) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { incidentTypes: string[] \| null; severityCode: string \| null; } ; `type`: [`resilient`](../modules/client._internal_namespace.md#resilient) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { impact: string \| null; severity: string \| null; urgency: string \| null; category: string \| null; subcategory: string \| null; } ; `type`: [`serviceNowITSM`](../modules/client._internal_namespace.md#servicenowitsm) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { category: string \| null; destIp: boolean \| null; malwareHash: boolean \| null; malwareUrl: boolean \| null; priority: string \| null; sourceIp: boolean \| null; subcategory: string \| null; } ; `type`: [`serviceNowSIR`](../modules/client._internal_namespace.md#servicenowsir) } & { `name`: `string` = rt.string } & { `id`: `string` = rt.string } & { `fields`: ``null`` \| { caseId: string \| null; } ; `type`: [`swimlane`](../modules/client._internal_namespace.md#swimlane) } & { `name`: `string` = rt.string } = CaseConnectorRt; `description`: `undefined` \| `string` = rt.string; `owner`: `undefined` \| `string` = rt.string; `settings`: `undefined` \| { `syncAlerts`: `boolean` = rt.boolean } = SettingsRt; `status`: `undefined` \| [`open`](../enums/client._internal_namespace.CaseStatuses.md#open) \| `any`[`any`] \| [`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed) = CaseStatusRt; `tags`: `undefined` \| `string`[] ; `title`: `undefined` \| `string` = rt.string } & { `id`: `string` = rt.string; `version`: `string` = rt.string }[]
-
-#### Inherited from
-
-CasesPatchRequest.cases
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesresponse.md
deleted file mode 100644
index 250ac66e4a680..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icasesresponse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICasesResponse
-
-# Interface: ICasesResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICasesResponse
-
-## Hierarchy
-
-- [`CasesResponse`](../modules/typedoc_interfaces._internal_namespace.md#casesresponse)
-
- ↳ **`ICasesResponse`**
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icaseuseractionsresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icaseuseractionsresponse.md
deleted file mode 100644
index d3b936903e42c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icaseuseractionsresponse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICaseUserActionsResponse
-
-# Interface: ICaseUserActionsResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICaseUserActionsResponse
-
-## Hierarchy
-
-- [`CaseUserActionsResponse`](../modules/typedoc_interfaces._internal_namespace.md#caseuseractionsresponse)
-
- ↳ **`ICaseUserActionsResponse`**
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icommentsresponse.md b/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icommentsresponse.md
deleted file mode 100644
index 012b28393f5b9..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/typedoc_interfaces.icommentsresponse.md
+++ /dev/null
@@ -1,60 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](../modules/typedoc_interfaces.md) / ICommentsResponse
-
-# Interface: ICommentsResponse
-
-[typedoc_interfaces](../modules/typedoc_interfaces.md).ICommentsResponse
-
-## Hierarchy
-
-- [`CommentsResponse`](../modules/typedoc_interfaces._internal_namespace.md#commentsresponse)
-
- ↳ **`ICommentsResponse`**
-
-## Table of contents
-
-### Properties
-
-- [comments](typedoc_interfaces.ICommentsResponse.md#comments)
-- [page](typedoc_interfaces.ICommentsResponse.md#page)
-- [per\_page](typedoc_interfaces.ICommentsResponse.md#per_page)
-- [total](typedoc_interfaces.ICommentsResponse.md#total)
-
-## Properties
-
-### comments
-
-• **comments**: { `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`user`](../modules/client._internal_namespace.md#user) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `alertId`: `string` \| `string`[] ; `index`: `string` \| `string`[] ; `owner`: `string` = rt.string; `rule`: { id: string \| null; name: string \| null; } ; `type`: [`alert`](../modules/client._internal_namespace.md#alert) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string } & { `actions`: { targets: { hostname: string; endpointId: string; }[]; type: string; } ; `comment`: `string` = rt.string; `owner`: `string` = rt.string; `type`: [`actions`](../modules/client._internal_namespace.md#actions) } & { `created_at`: `string` = rt.string; `created_by`: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } = UserRT; `owner`: `string` = rt.string; `pushed_at`: ``null`` \| `string` ; `pushed_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } ; `updated_at`: ``null`` \| `string` ; `updated_by`: ``null`` \| { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } } & { `id`: `string` = rt.string; `version`: `string` = rt.string }[]
-
-#### Inherited from
-
-CommentsResponse.comments
-
-___
-
-### page
-
-• **page**: `number` = `rt.number`
-
-#### Inherited from
-
-CommentsResponse.page
-
-___
-
-### per\_page
-
-• **per\_page**: `number` = `rt.number`
-
-#### Inherited from
-
-CommentsResponse.per\_page
-
-___
-
-### total
-
-• **total**: `number` = `rt.number`
-
-#### Inherited from
-
-CommentsResponse.total
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/user_actions_client.useractionget.md b/x-pack/plugins/cases/docs/cases_client/interfaces/user_actions_client.useractionget.md
deleted file mode 100644
index 8650aed9753f1..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/user_actions_client.useractionget.md
+++ /dev/null
@@ -1,25 +0,0 @@
-[Cases Client API Interface](../README.md) / [user\_actions/client](../modules/user_actions_client.md) / UserActionGet
-
-# Interface: UserActionGet
-
-[user_actions/client](../modules/user_actions_client.md).UserActionGet
-
-Parameters for retrieving user actions for a particular case
-
-## Table of contents
-
-### Properties
-
-- [caseId](user_actions_client.UserActionGet.md#caseid)
-
-## Properties
-
-### caseId
-
-• **caseId**: `string`
-
-The ID of the case
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/user_actions/client.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/user_actions/client.ts#L19)
diff --git a/x-pack/plugins/cases/docs/cases_client/interfaces/user_actions_client.useractionssubclient.md b/x-pack/plugins/cases/docs/cases_client/interfaces/user_actions_client.useractionssubclient.md
deleted file mode 100644
index 0cf541f5cc445..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/interfaces/user_actions_client.useractionssubclient.md
+++ /dev/null
@@ -1,35 +0,0 @@
-[Cases Client API Interface](../README.md) / [user\_actions/client](../modules/user_actions_client.md) / UserActionsSubClient
-
-# Interface: UserActionsSubClient
-
-[user_actions/client](../modules/user_actions_client.md).UserActionsSubClient
-
-API for interacting the actions performed by a user when interacting with the cases entities.
-
-## Table of contents
-
-### Methods
-
-- [getAll](user_actions_client.UserActionsSubClient.md#getall)
-
-## Methods
-
-### getAll
-
-▸ **getAll**(`clientArgs`): `Promise`<[`ICaseUserActionsResponse`](typedoc_interfaces.ICaseUserActionsResponse.md)\>
-
-Retrieves all user actions for a particular case.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `clientArgs` | [`UserActionGet`](user_actions_client.UserActionGet.md) |
-
-#### Returns
-
-`Promise`<[`ICaseUserActionsResponse`](typedoc_interfaces.ICaseUserActionsResponse.md)\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/user_actions/client.ts:29](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/user_actions/client.ts#L29)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/attachments_client._internal_namespace.md b/x-pack/plugins/cases/docs/cases_client/modules/attachments_client._internal_namespace.md
deleted file mode 100644
index 953648379c08f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/attachments_client._internal_namespace.md
+++ /dev/null
@@ -1,18 +0,0 @@
-[Cases Client API Interface](../README.md) / [attachments/client](attachments_client.md) / \_internal\_namespace
-
-# Namespace: \_internal\_namespace
-
-[attachments/client](attachments_client.md)._internal_namespace
-
-## Table of contents
-
-### Interfaces
-
-- [AddArgs](../interfaces/attachments_client._internal_namespace.AddArgs.md)
-- [DeleteAllArgs](../interfaces/attachments_client._internal_namespace.DeleteAllArgs.md)
-- [DeleteArgs](../interfaces/attachments_client._internal_namespace.DeleteArgs.md)
-- [FindArgs](../interfaces/attachments_client._internal_namespace.FindArgs.md)
-- [GetAllAlertsAttachToCase](../interfaces/attachments_client._internal_namespace.GetAllAlertsAttachToCase.md)
-- [GetAllArgs](../interfaces/attachments_client._internal_namespace.GetAllArgs.md)
-- [GetArgs](../interfaces/attachments_client._internal_namespace.GetArgs.md)
-- [UpdateArgs](../interfaces/attachments_client._internal_namespace.UpdateArgs.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/attachments_client.md b/x-pack/plugins/cases/docs/cases_client/modules/attachments_client.md
deleted file mode 100644
index 2463e2c654e93..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/attachments_client.md
+++ /dev/null
@@ -1,13 +0,0 @@
-[Cases Client API Interface](../README.md) / attachments/client
-
-# Module: attachments/client
-
-## Table of contents
-
-### Namespaces
-
-- [\_internal\_namespace](attachments_client._internal_namespace.md)
-
-### Interfaces
-
-- [AttachmentsSubClient](../interfaces/attachments_client.AttachmentsSubClient.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/cases_client.md b/x-pack/plugins/cases/docs/cases_client/modules/cases_client.md
deleted file mode 100644
index daf591f75c1f8..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/cases_client.md
+++ /dev/null
@@ -1,9 +0,0 @@
-[Cases Client API Interface](../README.md) / cases/client
-
-# Module: cases/client
-
-## Table of contents
-
-### Interfaces
-
-- [CasesSubClient](../interfaces/cases_client.CasesSubClient.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/cases_get._internal_namespace.md b/x-pack/plugins/cases/docs/cases_client/modules/cases_get._internal_namespace.md
deleted file mode 100644
index a43b25f69372f..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/cases_get._internal_namespace.md
+++ /dev/null
@@ -1,35 +0,0 @@
-[Cases Client API Interface](../README.md) / [cases/get](cases_get.md) / \_internal\_namespace
-
-# Namespace: \_internal\_namespace
-
-[cases/get](cases_get.md)._internal_namespace
-
-## Table of contents
-
-### Type aliases
-
-- [User](cases_get._internal_namespace.md#user)
-
-### Variables
-
-- [UserRT](cases_get._internal_namespace.md#userrt)
-
-## Type aliases
-
-### User
-
-Ƭ **User**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/user.ts:18](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/user.ts#L18)
-
-## Variables
-
-### UserRT
-
-• **UserRT**: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/user.ts:10](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/user.ts#L10)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/cases_get.md b/x-pack/plugins/cases/docs/cases_client/modules/cases_get.md
deleted file mode 100644
index 6dbf7bb10d0a3..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/cases_get.md
+++ /dev/null
@@ -1,93 +0,0 @@
-[Cases Client API Interface](../README.md) / cases/get
-
-# Module: cases/get
-
-## Table of contents
-
-### Namespaces
-
-- [\_internal\_namespace](cases_get._internal_namespace.md)
-
-### Interfaces
-
-- [CasesByAlertIDParams](../interfaces/cases_get.CasesByAlertIDParams.md)
-- [GetParams](../interfaces/cases_get.GetParams.md)
-
-### Functions
-
-- [getReporters](cases_get.md#getreporters)
-- [getTags](cases_get.md#gettags)
-- [resolve](cases_get.md#resolve)
-
-## Functions
-
-### getReporters
-
-▸ **getReporters**(`params`, `clientArgs`): `Promise`<[`User`](cases_get._internal_namespace.md#user)[]\>
-
-Retrieves the reporters from all the cases.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Object` |
-| `params.owner` | `undefined` \| `string` \| `string`[] |
-| `clientArgs` | [`CasesClientArgs`](../interfaces/client._internal_namespace.CasesClientArgs.md) |
-
-#### Returns
-
-`Promise`<[`User`](cases_get._internal_namespace.md#user)[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:301](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L301)
-
-___
-
-### getTags
-
-▸ **getTags**(`params`, `clientArgs`): `Promise`<`string`[]\>
-
-Retrieves the tags from all the cases.
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `Object` |
-| `params.owner` | `undefined` \| `string` \| `string`[] |
-| `clientArgs` | [`CasesClientArgs`](../interfaces/client._internal_namespace.CasesClientArgs.md) |
-
-#### Returns
-
-`Promise`<`string`[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:269](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L269)
-
-___
-
-### resolve
-
-▸ `Const` **resolve**(`__namedParameters`, `clientArgs`): `Promise`<{ `case`: { description: string; status: CaseStatuses; tags: string[]; title: string; connector: { id: string; } & (({ type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { ...; }) \| ... 4 more ... \| ({ ...; } & { ...; })); settings: { ...; }; owner: str... & { closed\_at: string \| null; closed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } \| null; created\_at: string; created\_by: { ...; }; external\_service: ({ ...; } & { ...; }) \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { `comments`: `undefined` \| { comment: string; type: CommentType.user; owner: string; } & { created\_at: string; created\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; }; owner: string; pushed\_at: string \| null; pushed\_by: { ...; } \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; version: string; } & { type: CommentType.alert; alertId: string \| string[]; index: string \| string[]; rule: { id: string \| null; name: string \| null; }; owner: string; } & { created\_at: string; created\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; }; owner: string; pushed\_at: string \| null; pushed\_by: { ...; } \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; version: string; } & { type: CommentType.actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { created\_at: string; created\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; }; owner: string; pushed\_at: string \| null; pushed\_by: { ...; } \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; version: string; }[] } = CaseResponseRt; `outcome`: ``"exactMatch"`` \| ``"aliasMatch"`` \| ``"conflict"`` } & { `alias_target_id`: `undefined` \| `string` = rt.string }\>
-
-Retrieves a case resolving its ID and optionally loading its comments.
-
-**`experimental`**
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `__namedParameters` | [`GetParams`](../interfaces/cases_get.GetParams.md) |
-| `clientArgs` | [`CasesClientArgs`](../interfaces/client._internal_namespace.CasesClientArgs.md) |
-
-#### Returns
-
-`Promise`<{ `case`: { description: string; status: CaseStatuses; tags: string[]; title: string; connector: { id: string; } & (({ type: ConnectorTypes.jira; fields: { issueType: string \| null; priority: string \| null; parent: string \| null; } \| null; } & { ...; }) \| ... 4 more ... \| ({ ...; } & { ...; })); settings: { ...; }; owner: str... & { closed\_at: string \| null; closed\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; } \| null; created\_at: string; created\_by: { ...; }; external\_service: ({ ...; } & { ...; }) \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { `comments`: `undefined` \| { comment: string; type: CommentType.user; owner: string; } & { created\_at: string; created\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; }; owner: string; pushed\_at: string \| null; pushed\_by: { ...; } \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; version: string; } & { type: CommentType.alert; alertId: string \| string[]; index: string \| string[]; rule: { id: string \| null; name: string \| null; }; owner: string; } & { created\_at: string; created\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; }; owner: string; pushed\_at: string \| null; pushed\_by: { ...; } \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; version: string; } & { type: CommentType.actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { created\_at: string; created\_by: { email: string \| null \| undefined; full\_name: string \| null \| undefined; username: string \| null \| undefined; }; owner: string; pushed\_at: string \| null; pushed\_by: { ...; } \| null; updated\_at: string \| null; updated\_by: { ...; } \| null; } & { id: string; version: string; }[] } = CaseResponseRt; `outcome`: ``"exactMatch"`` \| ``"aliasMatch"`` \| ``"conflict"`` } & { `alias_target_id`: `undefined` \| `string` = rt.string }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/cases/get.ts:208](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/cases/get.ts#L208)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/cases_push.md b/x-pack/plugins/cases/docs/cases_client/modules/cases_push.md
deleted file mode 100644
index bb9667b3308db..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/cases_push.md
+++ /dev/null
@@ -1,9 +0,0 @@
-[Cases Client API Interface](../README.md) / cases/push
-
-# Module: cases/push
-
-## Table of contents
-
-### Interfaces
-
-- [PushParams](../interfaces/cases_push.PushParams.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/client._internal_namespace.md b/x-pack/plugins/cases/docs/cases_client/modules/client._internal_namespace.md
deleted file mode 100644
index 4489106b370d1..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/client._internal_namespace.md
+++ /dev/null
@@ -1,2213 +0,0 @@
-[Cases Client API Interface](../README.md) / [client](client.md) / \_internal\_namespace
-
-# Namespace: \_internal\_namespace
-
-[client](client.md)._internal_namespace
-
-## Table of contents
-
-### Enumerations
-
-- [ActionExecutionSourceType](../enums/client._internal_namespace.ActionExecutionSourceType.md)
-- [AuthorizationMode](../enums/client._internal_namespace.AuthorizationMode.md)
-- [CaseStatuses](../enums/client._internal_namespace.CaseStatuses.md)
-- [TaskStatus](../enums/client._internal_namespace.TaskStatus.md)
-- [ViewMode](../enums/client._internal_namespace.ViewMode.md)
-
-### Enumeration members
-
-- [actions](client._internal_namespace.md#actions)
-- [alert](client._internal_namespace.md#alert)
-- [jira](client._internal_namespace.md#jira)
-- [none](client._internal_namespace.md#none)
-- [resilient](client._internal_namespace.md#resilient)
-- [serviceNowITSM](client._internal_namespace.md#servicenowitsm)
-- [serviceNowSIR](client._internal_namespace.md#servicenowsir)
-- [swimlane](client._internal_namespace.md#swimlane)
-- [user](client._internal_namespace.md#user)
-
-### Classes
-
-- [ActionExecutor](../classes/client._internal_namespace.ActionExecutor.md)
-- [ActionTypeRegistry](../classes/client._internal_namespace.ActionTypeRegistry.md)
-- [Actions](../classes/client._internal_namespace.Actions.md)
-- [ActionsAuthorization](../classes/client._internal_namespace.ActionsAuthorization.md)
-- [ActionsClient](../classes/client._internal_namespace.ActionsClient.md)
-- [AlertService](../classes/client._internal_namespace.AlertService.md)
-- [AlertingActions](../classes/client._internal_namespace.AlertingActions.md)
-- [ApiActions](../classes/client._internal_namespace.ApiActions.md)
-- [AppActions](../classes/client._internal_namespace.AppActions.md)
-- [AttachmentService](../classes/client._internal_namespace.AttachmentService.md)
-- [Authorization](../classes/client._internal_namespace.Authorization.md)
-- [AuthorizationAuditLogger](../classes/client._internal_namespace.AuthorizationAuditLogger.md)
-- [BasePath](../classes/client._internal_namespace.BasePath.md)
-- [BuilderFactory](../classes/client._internal_namespace.BuilderFactory.md)
-- [CaseConfigureService](../classes/client._internal_namespace.CaseConfigureService.md)
-- [CaseUserActionService](../classes/client._internal_namespace.CaseUserActionService.md)
-- [CasesActions](../classes/client._internal_namespace.CasesActions.md)
-- [CasesClientInternal](../classes/client._internal_namespace.CasesClientInternal.md)
-- [CasesService](../classes/client._internal_namespace.CasesService.md)
-- [ConnectorMappingsService](../classes/client._internal_namespace.ConnectorMappingsService.md)
-- [ConnectorTokenClient](../classes/client._internal_namespace.ConnectorTokenClient.md)
-- [ElasticsearchFeature](../classes/client._internal_namespace.ElasticsearchFeature.md)
-- [KibanaFeature](../classes/client._internal_namespace.KibanaFeature.md)
-- [KibanaMigrator](../classes/client._internal_namespace.KibanaMigrator.md)
-- [KibanaRequest](../classes/client._internal_namespace.KibanaRequest.md)
-- [LicenseState](../classes/client._internal_namespace.LicenseState.md)
-- [RouteValidationError](../classes/client._internal_namespace.RouteValidationError.md)
-- [RouteValidator](../classes/client._internal_namespace.RouteValidator.md)
-- [SavedObjectActions](../classes/client._internal_namespace.SavedObjectActions.md)
-- [SavedObjectTypeRegistry](../classes/client._internal_namespace.SavedObjectTypeRegistry.md)
-- [SavedObjectsClient](../classes/client._internal_namespace.SavedObjectsClient.md)
-- [SavedObjectsErrorHelpers](../classes/client._internal_namespace.SavedObjectsErrorHelpers.md)
-- [SavedObjectsRepository](../classes/client._internal_namespace.SavedObjectsRepository.md)
-- [SpaceActions](../classes/client._internal_namespace.SpaceActions.md)
-- [SubFeature](../classes/client._internal_namespace.SubFeature.md)
-- [TaskRunnerFactory](../classes/client._internal_namespace.TaskRunnerFactory.md)
-- [UIActions](../classes/client._internal_namespace.UIActions.md)
-- [UserActionBuilder](../classes/client._internal_namespace.UserActionBuilder.md)
-
-### Interfaces
-
-- [Action](../interfaces/client._internal_namespace.Action.md)
-- [ActionExecutionSource](../interfaces/client._internal_namespace.ActionExecutionSource.md)
-- [ActionExecutorContext](../interfaces/client._internal_namespace.ActionExecutorContext.md)
-- [ActionResult](../interfaces/client._internal_namespace.ActionResult.md)
-- [ActionType](../interfaces/client._internal_namespace.ActionType.md)
-- [ActionType](../interfaces/client._internal_namespace.ActionType-1.md)
-- [ActionTypeExecutorOptions](../interfaces/client._internal_namespace.ActionTypeExecutorOptions.md)
-- [ActionTypeExecutorResult](../interfaces/client._internal_namespace.ActionTypeExecutorResult.md)
-- [ActionTypeRegistryOpts](../interfaces/client._internal_namespace.ActionTypeRegistryOpts.md)
-- [ActionUpdate](../interfaces/client._internal_namespace.ActionUpdate.md)
-- [ActionsConfigurationUtilities](../interfaces/client._internal_namespace.ActionsConfigurationUtilities.md)
-- [ActionsLicenseInformation](../interfaces/client._internal_namespace.ActionsLicenseInformation.md)
-- [AggregationBuilder](../interfaces/client._internal_namespace.AggregationBuilder.md)
-- [Alert](../interfaces/client._internal_namespace.Alert.md)
-- [AlertIdIndex](../interfaces/client._internal_namespace.AlertIdIndex.md)
-- [AlertInfo](../interfaces/client._internal_namespace.AlertInfo.md)
-- [AlertsResponse](../interfaces/client._internal_namespace.AlertsResponse.md)
-- [AppCategory](../interfaces/client._internal_namespace.AppCategory.md)
-- [AttachedToCaseArgs](../interfaces/client._internal_namespace.AttachedToCaseArgs.md)
-- [Attributes](../interfaces/client._internal_namespace.Attributes.md)
-- [AuditEvent](../interfaces/client._internal_namespace.AuditEvent.md)
-- [AuditLogger](../interfaces/client._internal_namespace.AuditLogger.md)
-- [AuthFilterHelpers](../interfaces/client._internal_namespace.AuthFilterHelpers.md)
-- [AuthenticatedUser](../interfaces/client._internal_namespace.AuthenticatedUser.md)
-- [AuthenticationProvider](../interfaces/client._internal_namespace.AuthenticationProvider.md)
-- [AuthorizationMode](../interfaces/client._internal_namespace.AuthorizationMode-1.md)
-- [AuthorizationServiceSetup](../interfaces/client._internal_namespace.AuthorizationServiceSetup.md)
-- [BeforeSaveContext](../interfaces/client._internal_namespace.BeforeSaveContext.md)
-- [BuilderParameters](../interfaces/client._internal_namespace.BuilderParameters.md)
-- [BuilderReturnValue](../interfaces/client._internal_namespace.BuilderReturnValue.md)
-- [BulkCreateAttachmentDeletionUserAction](../interfaces/client._internal_namespace.BulkCreateAttachmentDeletionUserAction.md)
-- [BulkCreateBulkUpdateCaseUserActions](../interfaces/client._internal_namespace.BulkCreateBulkUpdateCaseUserActions.md)
-- [BulkCreateCaseDeletionUserAction](../interfaces/client._internal_namespace.BulkCreateCaseDeletionUserAction.md)
-- [BulkUpdateAttachmentArgs](../interfaces/client._internal_namespace.BulkUpdateAttachmentArgs.md)
-- [CancellableTask](../interfaces/client._internal_namespace.CancellableTask.md)
-- [Capabilities](../interfaces/client._internal_namespace.Capabilities.md)
-- [CaseCommentStats](../interfaces/client._internal_namespace.CaseCommentStats.md)
-- [CasesClientArgs](../interfaces/client._internal_namespace.CasesClientArgs.md)
-- [CasesMapWithPageInfo](../interfaces/client._internal_namespace.CasesMapWithPageInfo.md)
-- [CheckPrivileges](../interfaces/client._internal_namespace.CheckPrivileges.md)
-- [CheckPrivilegesOptions](../interfaces/client._internal_namespace.CheckPrivilegesOptions.md)
-- [CheckPrivilegesPayload](../interfaces/client._internal_namespace.CheckPrivilegesPayload.md)
-- [CheckPrivilegesResponse](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)
-- [ClientArgs](../interfaces/client._internal_namespace.ClientArgs.md)
-- [ClientArgs](../interfaces/client._internal_namespace.ClientArgs-1.md)
-- [ClientArgs](../interfaces/client._internal_namespace.ClientArgs-2.md)
-- [CommonArguments](../interfaces/client._internal_namespace.CommonArguments.md)
-- [ConcreteTaskInstance](../interfaces/client._internal_namespace.ConcreteTaskInstance.md)
-- [ConnectorToken](../interfaces/client._internal_namespace.ConnectorToken.md)
-- [ConstructorOptions](../interfaces/client._internal_namespace.ConstructorOptions.md)
-- [ConstructorOptions](../interfaces/client._internal_namespace.ConstructorOptions-1.md)
-- [ConstructorOptions](../interfaces/client._internal_namespace.ConstructorOptions-2.md)
-- [CountActionsAttachedToCaseArgs](../interfaces/client._internal_namespace.CountActionsAttachedToCaseArgs.md)
-- [CreateAttachmentArgs](../interfaces/client._internal_namespace.CreateAttachmentArgs.md)
-- [CreateAuditMsgParams](../interfaces/client._internal_namespace.CreateAuditMsgParams.md)
-- [CreateOptions](../interfaces/client._internal_namespace.CreateOptions.md)
-- [CreateOptions](../interfaces/client._internal_namespace.CreateOptions-1.md)
-- [CreateUserAction](../interfaces/client._internal_namespace.CreateUserAction.md)
-- [CreateUserActionES](../interfaces/client._internal_namespace.CreateUserActionES.md)
-- [DecoratedError](../interfaces/client._internal_namespace.DecoratedError.md)
-- [ElasticsearchFeatureConfig](../interfaces/client._internal_namespace.ElasticsearchFeatureConfig.md)
-- [EmbeddableRegistryDefinition](../interfaces/client._internal_namespace.EmbeddableRegistryDefinition.md)
-- [EncryptedSavedObjectsClient](../interfaces/client._internal_namespace.EncryptedSavedObjectsClient.md)
-- [ExecuteOptions](../interfaces/client._internal_namespace.ExecuteOptions.md)
-- [ExecuteOptions](../interfaces/client._internal_namespace.ExecuteOptions-1.md)
-- [FeatureElasticsearchPrivileges](../interfaces/client._internal_namespace.FeatureElasticsearchPrivileges.md)
-- [FeatureKibanaPrivileges](../interfaces/client._internal_namespace.FeatureKibanaPrivileges.md)
-- [FeatureUsageServiceSetup](../interfaces/client._internal_namespace.FeatureUsageServiceSetup.md)
-- [FindActionResult](../interfaces/client._internal_namespace.FindActionResult.md)
-- [FindCaseCommentsArgs](../interfaces/client._internal_namespace.FindCaseCommentsArgs.md)
-- [FindCaseConfigureArgs](../interfaces/client._internal_namespace.FindCaseConfigureArgs.md)
-- [FindCasesArgs](../interfaces/client._internal_namespace.FindCasesArgs.md)
-- [FindCommentsArgs](../interfaces/client._internal_namespace.FindCommentsArgs.md)
-- [FindConnectorMappingsArgs](../interfaces/client._internal_namespace.FindConnectorMappingsArgs.md)
-- [GetAllSpacesOptions](../interfaces/client._internal_namespace.GetAllSpacesOptions.md)
-- [GetAttachmentArgs](../interfaces/client._internal_namespace.GetAttachmentArgs.md)
-- [GetCaseArgs](../interfaces/client._internal_namespace.GetCaseArgs.md)
-- [GetCaseConfigureArgs](../interfaces/client._internal_namespace.GetCaseConfigureArgs.md)
-- [GetCaseIdsByAlertIdArgs](../interfaces/client._internal_namespace.GetCaseIdsByAlertIdArgs.md)
-- [GetCaseUserActionArgs](../interfaces/client._internal_namespace.GetCaseUserActionArgs.md)
-- [GetCasesArgs](../interfaces/client._internal_namespace.GetCasesArgs.md)
-- [GetReportersArgs](../interfaces/client._internal_namespace.GetReportersArgs.md)
-- [GetSpaceResult](../interfaces/client._internal_namespace.GetSpaceResult.md)
-- [GetTagsArgs](../interfaces/client._internal_namespace.GetTagsArgs.md)
-- [GetUserActionItemByDifference](../interfaces/client._internal_namespace.GetUserActionItemByDifference.md)
-- [GetUserArgs](../interfaces/client._internal_namespace.GetUserArgs.md)
-- [IEventLogger](../interfaces/client._internal_namespace.IEventLogger.md)
-- [IKibanaSocket](../interfaces/client._internal_namespace.IKibanaSocket.md)
-- [ILicense](../interfaces/client._internal_namespace.ILicense.md)
-- [ISavedObjectsPointInTimeFinder](../interfaces/client._internal_namespace.ISavedObjectsPointInTimeFinder.md)
-- [IScopedClusterClient](../interfaces/client._internal_namespace.IScopedClusterClient.md)
-- [ISpacesClient](../interfaces/client._internal_namespace.ISpacesClient.md)
-- [IUsageCounter](../interfaces/client._internal_namespace.IUsageCounter.md)
-- [IncrementCounterParams](../interfaces/client._internal_namespace.IncrementCounterParams.md)
-- [IndexMapping](../interfaces/client._internal_namespace.IndexMapping.md)
-- [IndexMappingMeta](../interfaces/client._internal_namespace.IndexMappingMeta.md)
-- [IntervalSchedule](../interfaces/client._internal_namespace.IntervalSchedule.md)
-- [KibanaFeatureConfig](../interfaces/client._internal_namespace.KibanaFeatureConfig.md)
-- [KibanaMigratorOptions](../interfaces/client._internal_namespace.KibanaMigratorOptions.md)
-- [KibanaMigratorStatus](../interfaces/client._internal_namespace.KibanaMigratorStatus.md)
-- [KibanaRequestEvents](../interfaces/client._internal_namespace.KibanaRequestEvents.md)
-- [LegacyUrlAliasTarget](../interfaces/client._internal_namespace.LegacyUrlAliasTarget.md)
-- [LicenseCheck](../interfaces/client._internal_namespace.LicenseCheck.md)
-- [LicenseFeature](../interfaces/client._internal_namespace.LicenseFeature.md)
-- [LicensingPluginSetup](../interfaces/client._internal_namespace.LicensingPluginSetup.md)
-- [Middleware](../interfaces/client._internal_namespace.Middleware.md)
-- [OperationDetails](../interfaces/client._internal_namespace.OperationDetails.md)
-- [OwnerEntity](../interfaces/client._internal_namespace.OwnerEntity.md)
-- [PatchCase](../interfaces/client._internal_namespace.PatchCase.md)
-- [PatchCaseConfigureArgs](../interfaces/client._internal_namespace.PatchCaseConfigureArgs.md)
-- [PatchCasesArgs](../interfaces/client._internal_namespace.PatchCasesArgs.md)
-- [PersistableState](../interfaces/client._internal_namespace.PersistableState.md)
-- [PluginStartContract](../interfaces/client._internal_namespace.PluginStartContract.md)
-- [PostCaseArgs](../interfaces/client._internal_namespace.PostCaseArgs.md)
-- [PostCaseConfigureArgs](../interfaces/client._internal_namespace.PostCaseConfigureArgs.md)
-- [PostCaseUserActionArgs](../interfaces/client._internal_namespace.PostCaseUserActionArgs.md)
-- [PostConnectorMappingsArgs](../interfaces/client._internal_namespace.PostConnectorMappingsArgs.md)
-- [PreConfiguredAction](../interfaces/client._internal_namespace.PreConfiguredAction.md)
-- [ProxySettings](../interfaces/client._internal_namespace.ProxySettings.md)
-- [PublicLicense](../interfaces/client._internal_namespace.PublicLicense.md)
-- [PublicLicenseJSON](../interfaces/client._internal_namespace.PublicLicenseJSON.md)
-- [PushedArgs](../interfaces/client._internal_namespace.PushedArgs.md)
-- [Referencable](../interfaces/client._internal_namespace.Referencable.md)
-- [ReservedKibanaPrivilege](../interfaces/client._internal_namespace.ReservedKibanaPrivilege.md)
-- [ResponseSettings](../interfaces/client._internal_namespace.ResponseSettings.md)
-- [RouteConfigOptions](../interfaces/client._internal_namespace.RouteConfigOptions.md)
-- [RouteConfigOptionsBody](../interfaces/client._internal_namespace.RouteConfigOptionsBody.md)
-- [RouteValidationResultFactory](../interfaces/client._internal_namespace.RouteValidationResultFactory.md)
-- [RouteValidatorConfig](../interfaces/client._internal_namespace.RouteValidatorConfig.md)
-- [RouteValidatorOptions](../interfaces/client._internal_namespace.RouteValidatorOptions.md)
-- [RunContext](../interfaces/client._internal_namespace.RunContext.md)
-- [RunNowResult](../interfaces/client._internal_namespace.RunNowResult.md)
-- [SSLSettings](../interfaces/client._internal_namespace.SSLSettings.md)
-- [SavedObject](../interfaces/client._internal_namespace.SavedObject.md)
-- [SavedObjectAttributes](../interfaces/client._internal_namespace.SavedObjectAttributes.md)
-- [SavedObjectDoc](../interfaces/client._internal_namespace.SavedObjectDoc.md)
-- [SavedObjectError](../interfaces/client._internal_namespace.SavedObjectError.md)
-- [SavedObjectMigrationContext](../interfaces/client._internal_namespace.SavedObjectMigrationContext.md)
-- [SavedObjectMigrationMap](../interfaces/client._internal_namespace.SavedObjectMigrationMap.md)
-- [SavedObjectReference](../interfaces/client._internal_namespace.SavedObjectReference.md)
-- [SavedObjectReferenceWithContext](../interfaces/client._internal_namespace.SavedObjectReferenceWithContext.md)
-- [SavedObjectsBaseOptions](../interfaces/client._internal_namespace.SavedObjectsBaseOptions.md)
-- [SavedObjectsBulkCreateObject](../interfaces/client._internal_namespace.SavedObjectsBulkCreateObject.md)
-- [SavedObjectsBulkGetObject](../interfaces/client._internal_namespace.SavedObjectsBulkGetObject.md)
-- [SavedObjectsBulkResolveObject](../interfaces/client._internal_namespace.SavedObjectsBulkResolveObject.md)
-- [SavedObjectsBulkResolveResponse](../interfaces/client._internal_namespace.SavedObjectsBulkResolveResponse.md)
-- [SavedObjectsBulkResponse](../interfaces/client._internal_namespace.SavedObjectsBulkResponse.md)
-- [SavedObjectsBulkUpdateObject](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateObject.md)
-- [SavedObjectsBulkUpdateOptions](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateOptions.md)
-- [SavedObjectsBulkUpdateResponse](../interfaces/client._internal_namespace.SavedObjectsBulkUpdateResponse.md)
-- [SavedObjectsCheckConflictsObject](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsObject.md)
-- [SavedObjectsCheckConflictsResponse](../interfaces/client._internal_namespace.SavedObjectsCheckConflictsResponse.md)
-- [SavedObjectsClosePointInTimeResponse](../interfaces/client._internal_namespace.SavedObjectsClosePointInTimeResponse.md)
-- [SavedObjectsCollectMultiNamespaceReferencesObject](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesObject.md)
-- [SavedObjectsCollectMultiNamespaceReferencesOptions](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesOptions.md)
-- [SavedObjectsCollectMultiNamespaceReferencesResponse](../interfaces/client._internal_namespace.SavedObjectsCollectMultiNamespaceReferencesResponse.md)
-- [SavedObjectsCreateOptions](../interfaces/client._internal_namespace.SavedObjectsCreateOptions.md)
-- [SavedObjectsCreatePointInTimeFinderDependencies](../interfaces/client._internal_namespace.SavedObjectsCreatePointInTimeFinderDependencies.md)
-- [SavedObjectsDeleteByNamespaceOptions](../interfaces/client._internal_namespace.SavedObjectsDeleteByNamespaceOptions.md)
-- [SavedObjectsDeleteOptions](../interfaces/client._internal_namespace.SavedObjectsDeleteOptions.md)
-- [SavedObjectsExportTransformContext](../interfaces/client._internal_namespace.SavedObjectsExportTransformContext.md)
-- [SavedObjectsFindOptions](../interfaces/client._internal_namespace.SavedObjectsFindOptions.md)
-- [SavedObjectsFindOptionsReference](../interfaces/client._internal_namespace.SavedObjectsFindOptionsReference.md)
-- [SavedObjectsFindResponse](../interfaces/client._internal_namespace.SavedObjectsFindResponse.md)
-- [SavedObjectsFindResult](../interfaces/client._internal_namespace.SavedObjectsFindResult.md)
-- [SavedObjectsImportActionRequiredWarning](../interfaces/client._internal_namespace.SavedObjectsImportActionRequiredWarning.md)
-- [SavedObjectsImportHookResult](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md)
-- [SavedObjectsImportSimpleWarning](../interfaces/client._internal_namespace.SavedObjectsImportSimpleWarning.md)
-- [SavedObjectsIncrementCounterField](../interfaces/client._internal_namespace.SavedObjectsIncrementCounterField.md)
-- [SavedObjectsIncrementCounterOptions](../interfaces/client._internal_namespace.SavedObjectsIncrementCounterOptions.md)
-- [SavedObjectsMappingProperties](../interfaces/client._internal_namespace.SavedObjectsMappingProperties.md)
-- [SavedObjectsMigrationLogger](../interfaces/client._internal_namespace.SavedObjectsMigrationLogger.md)
-- [SavedObjectsMigrationVersion](../interfaces/client._internal_namespace.SavedObjectsMigrationVersion.md)
-- [SavedObjectsOpenPointInTimeOptions](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeOptions.md)
-- [SavedObjectsOpenPointInTimeResponse](../interfaces/client._internal_namespace.SavedObjectsOpenPointInTimeResponse.md)
-- [SavedObjectsPitParams](../interfaces/client._internal_namespace.SavedObjectsPitParams.md)
-- [SavedObjectsRemoveReferencesToOptions](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToOptions.md)
-- [SavedObjectsRemoveReferencesToResponse](../interfaces/client._internal_namespace.SavedObjectsRemoveReferencesToResponse.md)
-- [SavedObjectsResolveResponse](../interfaces/client._internal_namespace.SavedObjectsResolveResponse.md)
-- [SavedObjectsType](../interfaces/client._internal_namespace.SavedObjectsType.md)
-- [SavedObjectsTypeManagementDefinition](../interfaces/client._internal_namespace.SavedObjectsTypeManagementDefinition.md)
-- [SavedObjectsTypeMappingDefinition](../interfaces/client._internal_namespace.SavedObjectsTypeMappingDefinition.md)
-- [SavedObjectsUpdateObjectsSpacesObject](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesObject.md)
-- [SavedObjectsUpdateObjectsSpacesOptions](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesOptions.md)
-- [SavedObjectsUpdateObjectsSpacesResponse](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponse.md)
-- [SavedObjectsUpdateObjectsSpacesResponseObject](../interfaces/client._internal_namespace.SavedObjectsUpdateObjectsSpacesResponseObject.md)
-- [SavedObjectsUpdateOptions](../interfaces/client._internal_namespace.SavedObjectsUpdateOptions.md)
-- [SavedObjectsUpdateResponse](../interfaces/client._internal_namespace.SavedObjectsUpdateResponse.md)
-- [SavedObjectsValidationMap](../interfaces/client._internal_namespace.SavedObjectsValidationMap.md)
-- [Services](../interfaces/client._internal_namespace.Services.md)
-- [Space](../interfaces/client._internal_namespace.Space.md)
-- [SpacesServiceStart](../interfaces/client._internal_namespace.SpacesServiceStart.md)
-- [SubFeatureConfig](../interfaces/client._internal_namespace.SubFeatureConfig.md)
-- [SubFeaturePrivilegeConfig](../interfaces/client._internal_namespace.SubFeaturePrivilegeConfig.md)
-- [SubFeaturePrivilegeGroupConfig](../interfaces/client._internal_namespace.SubFeaturePrivilegeGroupConfig.md)
-- [TaskInfo](../interfaces/client._internal_namespace.TaskInfo.md)
-- [TaskInstance](../interfaces/client._internal_namespace.TaskInstance.md)
-- [TaskManagerSetupContract](../interfaces/client._internal_namespace.TaskManagerSetupContract.md)
-- [TaskRegisterDefinition](../interfaces/client._internal_namespace.TaskRegisterDefinition.md)
-- [TaskRunnerContext](../interfaces/client._internal_namespace.TaskRunnerContext.md)
-- [TranslatedUpdateAlertRequest](../interfaces/client._internal_namespace.TranslatedUpdateAlertRequest.md)
-- [UpdateAlertRequest](../interfaces/client._internal_namespace.UpdateAlertRequest.md)
-- [UpdateArgs](../interfaces/client._internal_namespace.UpdateArgs.md)
-- [UpdateConnectorMappingsArgs](../interfaces/client._internal_namespace.UpdateConnectorMappingsArgs.md)
-- [UpdateOptions](../interfaces/client._internal_namespace.UpdateOptions.md)
-- [UpdateOptions](../interfaces/client._internal_namespace.UpdateOptions-1.md)
-- [User](../interfaces/client._internal_namespace.User.md)
-- [UserRealm](../interfaces/client._internal_namespace.UserRealm.md)
-- [ValidatorType](../interfaces/client._internal_namespace.ValidatorType.md)
-- [Verbs](../interfaces/client._internal_namespace.Verbs.md)
-
-### Type aliases
-
-- [ActionExecutorContract](client._internal_namespace.md#actionexecutorcontract)
-- [ActionTypeConfig](client._internal_namespace.md#actiontypeconfig)
-- [ActionTypeParams](client._internal_namespace.md#actiontypeparams)
-- [ActionTypeRegistryContract](client._internal_namespace.md#actiontyperegistrycontract)
-- [ActionTypeSecrets](client._internal_namespace.md#actiontypesecrets)
-- [ActionsClient](client._internal_namespace.md#actionsclient)
-- [AggregationResponse](client._internal_namespace.md#aggregationresponse)
-- [BeforeRunContextFunction](client._internal_namespace.md#beforeruncontextfunction)
-- [BeforeSaveContextFunction](client._internal_namespace.md#beforesavecontextfunction)
-- [CancelFunction](client._internal_namespace.md#cancelfunction)
-- [CasesFindRequest](client._internal_namespace.md#casesfindrequest)
-- [CheckPrivilegesDynamically](client._internal_namespace.md#checkprivilegesdynamically)
-- [CheckPrivilegesDynamicallyWithRequest](client._internal_namespace.md#checkprivilegesdynamicallywithrequest)
-- [CheckPrivilegesWithRequest](client._internal_namespace.md#checkprivilegeswithrequest)
-- [CheckSavedObjectsPrivileges](client._internal_namespace.md#checksavedobjectsprivileges)
-- [CheckSavedObjectsPrivilegesWithRequest](client._internal_namespace.md#checksavedobjectsprivilegeswithrequest)
-- [CommonBuilderArguments](client._internal_namespace.md#commonbuilderarguments)
-- [CommonUserActionArgs](client._internal_namespace.md#commonuseractionargs)
-- [ConnectorTokenClientContract](client._internal_namespace.md#connectortokenclientcontract)
-- [CreateUserActionClient](client._internal_namespace.md#createuseractionclient)
-- [DeepPartial](client._internal_namespace.md#deeppartial)
-- [DeepWriteable](client._internal_namespace.md#deepwriteable)
-- [DestructiveRouteMethod](client._internal_namespace.md#destructiveroutemethod)
-- [ElasticsearchClient](client._internal_namespace.md#elasticsearchclient)
-- [EmbeddableInput](client._internal_namespace.md#embeddableinput)
-- [EmbeddableStateWithType](client._internal_namespace.md#embeddablestatewithtype)
-- [EnsureSOAuthCallback](client._internal_namespace.md#ensuresoauthcallback)
-- [ExecutionEnqueuer](client._internal_namespace.md#executionenqueuer)
-- [ExecutorType](client._internal_namespace.md#executortype)
-- [FailedRunResult](client._internal_namespace.md#failedrunresult)
-- [FindCaseOptions](client._internal_namespace.md#findcaseoptions)
-- [GetAllSpacesPurpose](client._internal_namespace.md#getallspacespurpose)
-- [GetMigrationFunctionObjectFn](client._internal_namespace.md#getmigrationfunctionobjectfn)
-- [GetServicesFunction](client._internal_namespace.md#getservicesfunction)
-- [GetSpaceFn](client._internal_namespace.md#getspacefn)
-- [Headers](client._internal_namespace.md#headers)
-- [IBasePath](client._internal_namespace.md#ibasepath)
-- [IEvent](client._internal_namespace.md#ievent)
-- [IKibanaMigrator](client._internal_namespace.md#ikibanamigrator)
-- [ILicenseState](client._internal_namespace.md#ilicensestate)
-- [ISavedObjectTypeRegistry](client._internal_namespace.md#isavedobjecttyperegistry)
-- [ISavedObjectsRepository](client._internal_namespace.md#isavedobjectsrepository)
-- [IValidatedEvent](client._internal_namespace.md#ivalidatedevent)
-- [KibanaExecutionContext](client._internal_namespace.md#kibanaexecutioncontext)
-- [KibanaRequestRouteOptions](client._internal_namespace.md#kibanarequestrouteoptions)
-- [KnownHeaders](client._internal_namespace.md#knownheaders)
-- [KnownKeys](client._internal_namespace.md#knownkeys)
-- [LicenseCheckState](client._internal_namespace.md#licensecheckstate)
-- [LicenseStatus](client._internal_namespace.md#licensestatus)
-- [Mapper](client._internal_namespace.md#mapper)
-- [MigrateFunction](client._internal_namespace.md#migratefunction)
-- [MigrateFunctionsObject](client._internal_namespace.md#migratefunctionsobject)
-- [MigrationResult](client._internal_namespace.md#migrationresult)
-- [MigrationStatus](client._internal_namespace.md#migrationstatus)
-- [MutatingOperationRefreshSetting](client._internal_namespace.md#mutatingoperationrefreshsetting)
-- [PatchCaseArgs](client._internal_namespace.md#patchcaseargs)
-- [PersistableStateDefinition](client._internal_namespace.md#persistablestatedefinition)
-- [PublicFeatures](client._internal_namespace.md#publicfeatures)
-- [RouteContentType](client._internal_namespace.md#routecontenttype)
-- [RouteMethod](client._internal_namespace.md#routemethod)
-- [RouteValidationFunction](client._internal_namespace.md#routevalidationfunction)
-- [RouteValidationSpec](client._internal_namespace.md#routevalidationspec)
-- [RouteValidatorFullConfig](client._internal_namespace.md#routevalidatorfullconfig)
-- [RunFunction](client._internal_namespace.md#runfunction)
-- [RunResult](client._internal_namespace.md#runresult)
-- [SafeRouteMethod](client._internal_namespace.md#saferoutemethod)
-- [SavedObjectAttribute](client._internal_namespace.md#savedobjectattribute)
-- [SavedObjectAttributeSingle](client._internal_namespace.md#savedobjectattributesingle)
-- [SavedObjectFindOptions](client._internal_namespace.md#savedobjectfindoptions)
-- [SavedObjectFindOptionsKueryNode](client._internal_namespace.md#savedobjectfindoptionskuerynode)
-- [SavedObjectMigrationFn](client._internal_namespace.md#savedobjectmigrationfn)
-- [SavedObjectTypeExcludeFromUpgradeFilterHook](client._internal_namespace.md#savedobjecttypeexcludefromupgradefilterhook)
-- [SavedObjectUnsanitizedDoc](client._internal_namespace.md#savedobjectunsanitizeddoc)
-- [SavedObjectsClientContract](client._internal_namespace.md#savedobjectsclientcontract)
-- [SavedObjectsCreatePointInTimeFinderOptions](client._internal_namespace.md#savedobjectscreatepointintimefinderoptions)
-- [SavedObjectsExportTransform](client._internal_namespace.md#savedobjectsexporttransform)
-- [SavedObjectsExportablePredicate](client._internal_namespace.md#savedobjectsexportablepredicate)
-- [SavedObjectsFieldMapping](client._internal_namespace.md#savedobjectsfieldmapping)
-- [SavedObjectsImportHook](client._internal_namespace.md#savedobjectsimporthook)
-- [SavedObjectsImportWarning](client._internal_namespace.md#savedobjectsimportwarning)
-- [SavedObjectsNamespaceType](client._internal_namespace.md#savedobjectsnamespacetype)
-- [SavedObjectsValidationSpec](client._internal_namespace.md#savedobjectsvalidationspec)
-- [SpaceIdToNamespaceFunction](client._internal_namespace.md#spaceidtonamespacefunction)
-- [StringKeysAsVals](client._internal_namespace.md#stringkeysasvals)
-- [SubFeaturePrivilegeGroupType](client._internal_namespace.md#subfeatureprivilegegrouptype)
-- [SuccessfulRunResult](client._internal_namespace.md#successfulrunresult)
-- [TaskDefinitionRegistry](client._internal_namespace.md#taskdefinitionregistry)
-- [TaskRunCreatorFunction](client._internal_namespace.md#taskruncreatorfunction)
-- [UpdateAttachmentArgs](client._internal_namespace.md#updateattachmentargs)
-- [UserAction](client._internal_namespace.md#useraction)
-- [UserActionParameters](client._internal_namespace.md#useractionparameters)
-- [UserActionTypes](client._internal_namespace.md#useractiontypes)
-
-### Variables
-
-- [ActionTypesRt](client._internal_namespace.md#actiontypesrt)
-- [ActionsRt](client._internal_namespace.md#actionsrt)
-- [CasesFindRequestRt](client._internal_namespace.md#casesfindrequestrt)
-- [EventSchema](client._internal_namespace.md#eventschema)
-- [SavedObjectFindOptionsRt](client._internal_namespace.md#savedobjectfindoptionsrt)
-
-## Enumeration members
-
-### actions
-
-• **actions**: `Object` = `"actions"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:26](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L26)
-
-___
-
-### alert
-
-• **alert**: `Object` = `"alert"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:25](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L25)
-
-___
-
-### jira
-
-• **jira**: `Object` = `".jira"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/connectors/index.ts:36](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/connectors/index.ts#L36)
-
-___
-
-### none
-
-• **none**: `Object` = `".none"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/connectors/index.ts:37](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/connectors/index.ts#L37)
-
-___
-
-### resilient
-
-• **resilient**: `Object` = `".resilient"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/connectors/index.ts:38](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/connectors/index.ts#L38)
-
-___
-
-### serviceNowITSM
-
-• **serviceNowITSM**: `Object` = `".servicenow"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/connectors/index.ts:39](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/connectors/index.ts#L39)
-
-___
-
-### serviceNowSIR
-
-• **serviceNowSIR**: `Object` = `".servicenow-sir"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/connectors/index.ts:40](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/connectors/index.ts#L40)
-
-___
-
-### swimlane
-
-• **swimlane**: `Object` = `".swimlane"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/connectors/index.ts:41](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/connectors/index.ts#L41)
-
-___
-
-### user
-
-• **user**: `Object` = `"user"`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:24](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L24)
-
-## Type aliases
-
-### ActionExecutorContract
-
-Ƭ **ActionExecutorContract**: `PublicMethodsOf`<[`ActionExecutor`](../classes/client._internal_namespace.ActionExecutor.md)\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/action_executor.d.ts:34
-
-___
-
-### ActionTypeConfig
-
-Ƭ **ActionTypeConfig**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:19
-
-___
-
-### ActionTypeParams
-
-Ƭ **ActionTypeParams**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:21
-
-___
-
-### ActionTypeRegistryContract
-
-Ƭ **ActionTypeRegistryContract**: `PublicMethodsOf`<[`ActionTypeRegistry`](../classes/client._internal_namespace.ActionTypeRegistry.md)\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:17
-
-___
-
-### ActionTypeSecrets
-
-Ƭ **ActionTypeSecrets**: `Record`<`string`, `unknown`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:20
-
-___
-
-### ActionsClient
-
-Ƭ **ActionsClient**: `PublicMethodsOf`<[`ActionsClient`](../classes/client._internal_namespace.ActionsClient.md)\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/index.d.ts:7
-
-___
-
-### AggregationResponse
-
-Ƭ **AggregationResponse**: `Record`<`string`, `estypes.AggregationsAggregate`\> \| `undefined`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/metrics/types.ts:25](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/metrics/types.ts#L25)
-
-___
-
-### BeforeRunContextFunction
-
-Ƭ **BeforeRunContextFunction**: [`Mapper`](client._internal_namespace.md#mapper)<[`RunContext`](../interfaces/client._internal_namespace.RunContext.md)\>
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:7
-
-___
-
-### BeforeSaveContextFunction
-
-Ƭ **BeforeSaveContextFunction**: [`Mapper`](client._internal_namespace.md#mapper)<[`BeforeSaveContext`](../interfaces/client._internal_namespace.BeforeSaveContext.md)\>
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:6
-
-___
-
-### CancelFunction
-
-Ƭ **CancelFunction**: () => `Promise`<[`RunResult`](client._internal_namespace.md#runresult) \| `undefined` \| `void`\>
-
-#### Type declaration
-
-▸ (): `Promise`<[`RunResult`](client._internal_namespace.md#runresult) \| `undefined` \| `void`\>
-
-##### Returns
-
-`Promise`<[`RunResult`](client._internal_namespace.md#runresult) \| `undefined` \| `void`\>
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:65
-
-___
-
-### CasesFindRequest
-
-Ƭ **CasesFindRequest**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:284](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L284)
-
-___
-
-### CheckPrivilegesDynamically
-
-Ƭ **CheckPrivilegesDynamically**: (`privileges`: [`CheckPrivilegesPayload`](../interfaces/client._internal_namespace.CheckPrivilegesPayload.md), `options?`: [`CheckPrivilegesOptions`](../interfaces/client._internal_namespace.CheckPrivilegesOptions.md)) => `Promise`<[`CheckPrivilegesResponse`](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Type declaration
-
-▸ (`privileges`, `options?`): `Promise`<[`CheckPrivilegesResponse`](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `privileges` | [`CheckPrivilegesPayload`](../interfaces/client._internal_namespace.CheckPrivilegesPayload.md) |
-| `options?` | [`CheckPrivilegesOptions`](../interfaces/client._internal_namespace.CheckPrivilegesOptions.md) |
-
-##### Returns
-
-`Promise`<[`CheckPrivilegesResponse`](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/check_privileges_dynamically.d.ts:4
-
-___
-
-### CheckPrivilegesDynamicallyWithRequest
-
-Ƭ **CheckPrivilegesDynamicallyWithRequest**: (`request`: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)) => [`CheckPrivilegesDynamically`](client._internal_namespace.md#checkprivilegesdynamically)
-
-#### Type declaration
-
-▸ (`request`): [`CheckPrivilegesDynamically`](client._internal_namespace.md#checkprivilegesdynamically)
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md) |
-
-##### Returns
-
-[`CheckPrivilegesDynamically`](client._internal_namespace.md#checkprivilegesdynamically)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/check_privileges_dynamically.d.ts:5
-
-___
-
-### CheckPrivilegesWithRequest
-
-Ƭ **CheckPrivilegesWithRequest**: (`request`: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)) => [`CheckPrivileges`](../interfaces/client._internal_namespace.CheckPrivileges.md)
-
-#### Type declaration
-
-▸ (`request`): [`CheckPrivileges`](../interfaces/client._internal_namespace.CheckPrivileges.md)
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md) |
-
-##### Returns
-
-[`CheckPrivileges`](../interfaces/client._internal_namespace.CheckPrivileges.md)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/types.d.ts:59
-
-___
-
-### CheckSavedObjectsPrivileges
-
-Ƭ **CheckSavedObjectsPrivileges**: (`actions`: `string` \| `string`[], `namespaceOrNamespaces?`: `string` \| (`undefined` \| `string`)[]) => `Promise`<[`CheckPrivilegesResponse`](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Type declaration
-
-▸ (`actions`, `namespaceOrNamespaces?`): `Promise`<[`CheckPrivilegesResponse`](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `actions` | `string` \| `string`[] |
-| `namespaceOrNamespaces?` | `string` \| (`undefined` \| `string`)[] |
-
-##### Returns
-
-`Promise`<[`CheckPrivilegesResponse`](../interfaces/client._internal_namespace.CheckPrivilegesResponse.md)\>
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/check_saved_objects_privileges.d.ts:5
-
-___
-
-### CheckSavedObjectsPrivilegesWithRequest
-
-Ƭ **CheckSavedObjectsPrivilegesWithRequest**: (`request`: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)) => [`CheckSavedObjectsPrivileges`](client._internal_namespace.md#checksavedobjectsprivileges)
-
-#### Type declaration
-
-▸ (`request`): [`CheckSavedObjectsPrivileges`](client._internal_namespace.md#checksavedobjectsprivileges)
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md) |
-
-##### Returns
-
-[`CheckSavedObjectsPrivileges`](client._internal_namespace.md#checksavedobjectsprivileges)
-
-#### Defined in
-
-x-pack/plugins/security/target/types/server/authorization/check_saved_objects_privileges.d.ts:4
-
-___
-
-### CommonBuilderArguments
-
-Ƭ **CommonBuilderArguments**: [`CommonArguments`](../interfaces/client._internal_namespace.CommonArguments.md) & { `action`: [`UserAction`](client._internal_namespace.md#useraction) ; `type`: [`UserActionTypes`](client._internal_namespace.md#useractiontypes) ; `value`: `unknown` ; `valueKey`: `string` }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:97](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L97)
-
-___
-
-### CommonUserActionArgs
-
-Ƭ **CommonUserActionArgs**: [`ClientArgs`](../interfaces/client._internal_namespace.ClientArgs-1.md) & [`CommonArguments`](../interfaces/client._internal_namespace.CommonArguments.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:75](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L75)
-
-___
-
-### ConnectorTokenClientContract
-
-Ƭ **ConnectorTokenClientContract**: `PublicMethodsOf`<[`ConnectorTokenClient`](../classes/client._internal_namespace.ConnectorTokenClient.md)\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:22
-
-___
-
-### CreateUserActionClient
-
-Ƭ **CreateUserActionClient**<`T`\>: [`CreateUserAction`](../interfaces/client._internal_namespace.CreateUserAction.md)<`T`\> & [`CommonUserActionArgs`](client._internal_namespace.md#commonuseractionargs)
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | extends keyof [`BuilderParameters`](../interfaces/client._internal_namespace.BuilderParameters.md) |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/index.ts:98](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/index.ts#L98)
-
-___
-
-### DeepPartial
-
-Ƭ **DeepPartial**<`T`\>: { [P in keyof T]?: T[P] extends infer U[] ? DeepPartial[] : DeepPartial }
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/generated/schemas.d.ts:5
-
-___
-
-### DeepWriteable
-
-Ƭ **DeepWriteable**<`T`\>: { -readonly [P in keyof T]: DeepWriteable }
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/generated/schemas.d.ts:2
-
-___
-
-### DestructiveRouteMethod
-
-Ƭ **DestructiveRouteMethod**: ``"post"`` \| ``"put"`` \| ``"delete"`` \| ``"patch"``
-
-Set of HTTP methods changing the state of the server.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:7
-
-___
-
-### ElasticsearchClient
-
-Ƭ **ElasticsearchClient**: `Omit`<`KibanaClient`, ``"connectionPool"`` \| ``"transport"`` \| ``"serializer"`` \| ``"extend"`` \| ``"child"`` \| ``"close"`` \| ``"diagnostic"``\> & { `transport`: { `request`: (`params`: `TransportRequestParams`, `options?`: `TransportRequestOptions`) => `Promise`<`TransportResult`<`TResponse`, `unknown`\>\> } }
-
-Client used to query the elasticsearch cluster.
-
-#### Defined in
-
-src/core/target/types/server/elasticsearch/client/types.d.ts:8
-
-___
-
-### EmbeddableInput
-
-Ƭ **EmbeddableInput**: `Object`
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `disableTriggers?` | `boolean` | Whether this embeddable should not execute triggers. |
-| `disabledActions?` | `string`[] | List of action IDs that this embeddable should not render. |
-| `enhancements?` | `SerializableRecord` | Reserved key for enhancements added by other plugins. |
-| `executionContext?` | [`KibanaExecutionContext`](client._internal_namespace.md#kibanaexecutioncontext) | - |
-| `hidePanelTitles?` | `boolean` | - |
-| `id` | `string` | Note this is not a saved object id. It is used to uniquely identify this Embeddable instance from others (e.g. inside a container). It's possible to have two Embeddables where everything else is the same but the id. |
-| `lastReloadRequestTime?` | `number` | - |
-| `searchSessionId?` | `string` | Search session id to group searches |
-| `syncColors?` | `boolean` | Flag whether colors should be synced with other panels |
-| `title?` | `string` | - |
-| `viewMode?` | [`ViewMode`](../enums/client._internal_namespace.ViewMode.md) | - |
-
-#### Defined in
-
-src/plugins/embeddable/target/types/common/types.d.ts:10
-
-___
-
-### EmbeddableStateWithType
-
-Ƭ **EmbeddableStateWithType**: [`EmbeddableInput`](client._internal_namespace.md#embeddableinput) & { `type`: `string` }
-
-#### Defined in
-
-src/plugins/embeddable/target/types/common/types.d.ts:53
-
-___
-
-### EnsureSOAuthCallback
-
-Ƭ **EnsureSOAuthCallback**: (`entities`: [`OwnerEntity`](../interfaces/client._internal_namespace.OwnerEntity.md)[]) => `void`
-
-#### Type declaration
-
-▸ (`entities`): `void`
-
-Function callback for making sure the found saved objects are of the authorized owner
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `entities` | [`OwnerEntity`](../interfaces/client._internal_namespace.OwnerEntity.md)[] |
-
-##### Returns
-
-`void`
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:110](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L110)
-
-___
-
-### ExecutionEnqueuer
-
-Ƭ **ExecutionEnqueuer**<`T`\>: (`unsecuredSavedObjectsClient`: [`SavedObjectsClientContract`](client._internal_namespace.md#savedobjectsclientcontract), `options`: [`ExecuteOptions`](../interfaces/client._internal_namespace.ExecuteOptions-1.md)) => `Promise`<`T`\>
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Type declaration
-
-▸ (`unsecuredSavedObjectsClient`, `options`): `Promise`<`T`\>
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `unsecuredSavedObjectsClient` | [`SavedObjectsClientContract`](client._internal_namespace.md#savedobjectsclientcontract) |
-| `options` | [`ExecuteOptions`](../interfaces/client._internal_namespace.ExecuteOptions-1.md) |
-
-##### Returns
-
-`Promise`<`T`\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/create_execute_function.d.ts:19
-
-___
-
-### ExecutorType
-
-Ƭ **ExecutorType**<`Config`, `Secrets`, `Params`, `ResultData`\>: (`options`: [`ActionTypeExecutorOptions`](../interfaces/client._internal_namespace.ActionTypeExecutorOptions.md)<`Config`, `Secrets`, `Params`\>) => `Promise`<[`ActionTypeExecutorResult`](../interfaces/client._internal_namespace.ActionTypeExecutorResult.md)<`ResultData`\>\>
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `Config` |
-| `Secrets` |
-| `Params` |
-| `ResultData` |
-
-#### Type declaration
-
-▸ (`options`): `Promise`<[`ActionTypeExecutorResult`](../interfaces/client._internal_namespace.ActionTypeExecutorResult.md)<`ResultData`\>\>
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `options` | [`ActionTypeExecutorOptions`](../interfaces/client._internal_namespace.ActionTypeExecutorOptions.md)<`Config`, `Secrets`, `Params`\> |
-
-##### Returns
-
-`Promise`<[`ActionTypeExecutorResult`](../interfaces/client._internal_namespace.ActionTypeExecutorResult.md)<`ResultData`\>\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:62
-
-___
-
-### FailedRunResult
-
-Ƭ **FailedRunResult**: [`SuccessfulRunResult`](client._internal_namespace.md#successfulrunresult) & { `error`: `Error` }
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:52
-
-___
-
-### FindCaseOptions
-
-Ƭ **FindCaseOptions**: [`CasesFindRequest`](client._internal_namespace.md#casesfindrequest) & [`SavedObjectFindOptionsKueryNode`](client._internal_namespace.md#savedobjectfindoptionskuerynode)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:125](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L125)
-
-___
-
-### GetAllSpacesPurpose
-
-Ƭ **GetAllSpacesPurpose**: ``"any"`` \| ``"copySavedObjectsIntoSpace"`` \| ``"findSavedObjects"`` \| ``"shareSavedObjectsIntoSpace"``
-
-The set of purposes to retrieve spaces:
-- `any`: retrieves all spaces the user is authorized to see.
-- `copySavedObjectsIntoSpace`: retrieves all spaces the user is authorized to copy saved objects into.
-- `findSavedObjects`: retrieves all spaces the user is authorized to search within.
-- `shareSavedObjectsIntoSpace`: retrieves all spaces the user is authorized to share saved objects into.
-
-#### Defined in
-
-x-pack/plugins/spaces/target/types/common/types.d.ts:74
-
-___
-
-### GetMigrationFunctionObjectFn
-
-Ƭ **GetMigrationFunctionObjectFn**: () => [`MigrateFunctionsObject`](client._internal_namespace.md#migratefunctionsobject)
-
-#### Type declaration
-
-▸ (): [`MigrateFunctionsObject`](client._internal_namespace.md#migratefunctionsobject)
-
-##### Returns
-
-[`MigrateFunctionsObject`](client._internal_namespace.md#migratefunctionsobject)
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:77
-
-___
-
-### GetServicesFunction
-
-Ƭ **GetServicesFunction**: (`request`: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)) => [`Services`](../interfaces/client._internal_namespace.Services.md)
-
-#### Type declaration
-
-▸ (`request`): [`Services`](../interfaces/client._internal_namespace.Services.md)
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md) |
-
-##### Returns
-
-[`Services`](../interfaces/client._internal_namespace.Services.md)
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:16
-
-___
-
-### GetSpaceFn
-
-Ƭ **GetSpaceFn**: (`request`: [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md)) => `Promise`<[`Space`](../interfaces/client._internal_namespace.Space.md) \| `undefined`\>
-
-#### Type declaration
-
-▸ (`request`): `Promise`<[`Space`](../interfaces/client._internal_namespace.Space.md) \| `undefined`\>
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `request` | [`KibanaRequest`](../classes/client._internal_namespace.KibanaRequest.md) |
-
-##### Returns
-
-`Promise`<[`Space`](../interfaces/client._internal_namespace.Space.md) \| `undefined`\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/authorization/types.ts:21](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/authorization/types.ts#L21)
-
-___
-
-### Headers
-
-Ƭ **Headers**: { [header in KnownHeaders]?: string \| string[] } & { [header: string]: `string` \| `string`[] \| `undefined`; }
-
-Http request headers to read.
-
-#### Defined in
-
-src/core/target/types/server/http/router/headers.d.ts:36
-
-___
-
-### IBasePath
-
-Ƭ **IBasePath**: `Pick`<[`BasePath`](../classes/client._internal_namespace.BasePath.md), keyof [`BasePath`](../classes/client._internal_namespace.BasePath.md)\>
-
-Access or manipulate the Kibana base path
-
-[BasePath](../classes/client._internal_namespace.BasePath.md)
-
-#### Defined in
-
-src/core/target/types/server/http/base_path_service.d.ts:50
-
-___
-
-### IEvent
-
-Ƭ **IEvent**: [`DeepPartial`](client._internal_namespace.md#deeppartial)<[`DeepWriteable`](client._internal_namespace.md#deepwriteable)<[`IValidatedEvent`](client._internal_namespace.md#ivalidatedevent)\>\>
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/generated/schemas.d.ts:10
-
-___
-
-### IKibanaMigrator
-
-Ƭ **IKibanaMigrator**: `Pick`<[`KibanaMigrator`](../classes/client._internal_namespace.KibanaMigrator.md), keyof [`KibanaMigrator`](../classes/client._internal_namespace.KibanaMigrator.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/kibana_migrator.d.ts:17
-
-___
-
-### ILicenseState
-
-Ƭ **ILicenseState**: `PublicMethodsOf`<[`LicenseState`](../classes/client._internal_namespace.LicenseState.md)\>
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/lib/license_state.d.ts:6
-
-___
-
-### ISavedObjectTypeRegistry
-
-Ƭ **ISavedObjectTypeRegistry**: `Omit`<[`SavedObjectTypeRegistry`](../classes/client._internal_namespace.SavedObjectTypeRegistry.md), ``"registerType"``\>
-
-See [SavedObjectTypeRegistry](../classes/client._internal_namespace.SavedObjectTypeRegistry.md) for documentation.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/saved_objects_type_registry.d.ts:7
-
-___
-
-### ISavedObjectsRepository
-
-Ƭ **ISavedObjectsRepository**: `Pick`<[`SavedObjectsRepository`](../classes/client._internal_namespace.SavedObjectsRepository.md), keyof [`SavedObjectsRepository`](../classes/client._internal_namespace.SavedObjectsRepository.md)\>
-
-See [SavedObjectsRepository](../classes/client._internal_namespace.SavedObjectsRepository.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/repository.d.ts:57
-
-___
-
-### IValidatedEvent
-
-Ƭ **IValidatedEvent**: `TypeOf`
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/generated/schemas.d.ts:9
-
-___
-
-### KibanaExecutionContext
-
-Ƭ **KibanaExecutionContext**: `Object`
-
-#### Type declaration
-
-| Name | Type | Description |
-| :------ | :------ | :------ |
-| `description` | `string` | human readable description. For example, a vis title, action name |
-| `id` | `string` | unique value to identify the source |
-| `name` | `string` | public name of a user-facing feature |
-| `parent?` | [`KibanaExecutionContext`](client._internal_namespace.md#kibanaexecutioncontext) | a context that spawned the current context. |
-| `type` | `string` | Kibana application initated an operation. |
-| `url?` | `string` | in browser - url to navigate to a current page, on server - endpoint path, for task: task SO url |
-
-#### Defined in
-
-src/core/target/types/types/execution_context.d.ts:5
-
-___
-
-### KibanaRequestRouteOptions
-
-Ƭ **KibanaRequestRouteOptions**<`Method`\>: `Method` extends ``"get"`` \| ``"options"`` ? `Required`<`Omit`<[`RouteConfigOptions`](../interfaces/client._internal_namespace.RouteConfigOptions.md)<`Method`\>, ``"body"``\>\> : `Required`<[`RouteConfigOptions`](../interfaces/client._internal_namespace.RouteConfigOptions.md)<`Method`\>\>
-
-Route options: If 'GET' or 'OPTIONS' method, body options won't be returned.
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Method` | extends [`RouteMethod`](client._internal_namespace.md#routemethod) |
-
-#### Defined in
-
-src/core/target/types/server/http/router/request.d.ts:30
-
-___
-
-### KnownHeaders
-
-Ƭ **KnownHeaders**: [`KnownKeys`](client._internal_namespace.md#knownkeys)<`IncomingHttpHeaders`\>
-
-Set of well-known HTTP headers.
-
-#### Defined in
-
-src/core/target/types/server/http/router/headers.d.ts:31
-
-___
-
-### KnownKeys
-
-Ƭ **KnownKeys**<`T`\>: [`StringKeysAsVals`](client._internal_namespace.md#stringkeysasvals)<`T`\> extends { [\_ in keyof T]: infer U } ? `U` : `never`
-
-Creates a Union type of all known keys of a given interface.
-
-**`example`**
-```ts
-interface Person {
- name: string;
- age: number;
- [attributes: string]: string | number;
-}
-type PersonKnownKeys = KnownKeys; // "age" | "name"
-```
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/headers.d.ts:24
-
-___
-
-### LicenseCheckState
-
-Ƭ **LicenseCheckState**: ``"unavailable"`` \| ``"invalid"`` \| ``"valid"`` \| ``"expired"``
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:1
-
-___
-
-### LicenseStatus
-
-Ƭ **LicenseStatus**: ``"active"`` \| ``"invalid"`` \| ``"expired"``
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:13
-
-___
-
-### Mapper
-
-Ƭ **Mapper**<`T`\>: (`params`: `T`) => `Promise`<`T`\>
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Type declaration
-
-▸ (`params`): `Promise`<`T`\>
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `params` | `T` |
-
-##### Returns
-
-`Promise`<`T`\>
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/lib/middleware.d.ts:2
-
-___
-
-### MigrateFunction
-
-Ƭ **MigrateFunction**<`FromVersion`, `ToVersion`\>: (`state`: `FromVersion`) => `ToVersion`
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `FromVersion` | extends `Serializable` = `SerializableRecord` |
-| `ToVersion` | extends `Serializable` = `SerializableRecord` |
-
-#### Type declaration
-
-▸ (`state`): `ToVersion`
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `state` | `FromVersion` |
-
-##### Returns
-
-`ToVersion`
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:86
-
-___
-
-### MigrateFunctionsObject
-
-Ƭ **MigrateFunctionsObject**: `Object`
-
-Collection of migrations that a given type of persistable state object has
-accumulated over time. Migration functions are keyed using semver version
-of Kibana releases.
-
-#### Index signature
-
-▪ [semver: `string`]: [`MigrateFunction`](client._internal_namespace.md#migratefunction)<`any`, `any`\>
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:83
-
-___
-
-### MigrationResult
-
-Ƭ **MigrationResult**: { `status`: ``"skipped"`` } \| { `status`: ``"patched"`` } \| { `destIndex`: `string` ; `elapsedMs`: `number` ; `sourceIndex`: `string` ; `status`: ``"migrated"`` }
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/types.d.ts:2
-
-___
-
-### MigrationStatus
-
-Ƭ **MigrationStatus**: ``"waiting_to_start"`` \| ``"waiting_for_other_nodes"`` \| ``"running"`` \| ``"completed"``
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/core/types.d.ts:1
-
-___
-
-### MutatingOperationRefreshSetting
-
-Ƭ **MutatingOperationRefreshSetting**: `boolean` \| ``"wait_for"``
-
-Elasticsearch Refresh setting for mutating operation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:132
-
-___
-
-### PatchCaseArgs
-
-Ƭ **PatchCaseArgs**: [`PatchCase`](../interfaces/client._internal_namespace.PatchCase.md) & [`ClientArgs`](../interfaces/client._internal_namespace.ClientArgs-1.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/cases/index.ts:103](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/cases/index.ts#L103)
-
-___
-
-### PersistableStateDefinition
-
-Ƭ **PersistableStateDefinition**<`P`\>: `Partial`<[`PersistableState`](../interfaces/client._internal_namespace.PersistableState.md)<`P`\>\>
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `P` | extends `SerializableRecord` = `SerializableRecord` |
-
-#### Defined in
-
-src/plugins/kibana_utils/target/types/common/persistable_state/types.d.ts:93
-
-___
-
-### PublicFeatures
-
-Ƭ **PublicFeatures**: `Record`<`string`, [`LicenseFeature`](../interfaces/client._internal_namespace.LicenseFeature.md)\>
-
-Provides information about feature availability for the current license.
-
-#### Defined in
-
-x-pack/plugins/licensing/target/types/common/types.d.ts:51
-
-___
-
-### RouteContentType
-
-Ƭ **RouteContentType**: ``"application/json"`` \| ``"application/*+json"`` \| ``"application/octet-stream"`` \| ``"application/x-www-form-urlencoded"`` \| ``"multipart/form-data"`` \| ``"text/*"``
-
-The set of supported parseable Content-Types
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:27
-
-___
-
-### RouteMethod
-
-Ƭ **RouteMethod**: [`SafeRouteMethod`](client._internal_namespace.md#saferoutemethod) \| [`DestructiveRouteMethod`](client._internal_namespace.md#destructiveroutemethod)
-
-The set of common HTTP methods supported by Kibana routing.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:17
-
-___
-
-### RouteValidationFunction
-
-Ƭ **RouteValidationFunction**<`T`\>: (`data`: `any`, `validationResult`: [`RouteValidationResultFactory`](../interfaces/client._internal_namespace.RouteValidationResultFactory.md)) => { `error?`: `never` ; `value`: `T` } \| { `error`: [`RouteValidationError`](../classes/client._internal_namespace.RouteValidationError.md) ; `value?`: `never` }
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Type declaration
-
-▸ (`data`, `validationResult`): { `error?`: `never` ; `value`: `T` } \| { `error`: [`RouteValidationError`](../classes/client._internal_namespace.RouteValidationError.md) ; `value?`: `never` }
-
-The custom validation function if @kbn/config-schema is not a valid solution for your specific plugin requirements.
-
-**`example`**
-
-The validation should look something like:
-```typescript
-interface MyExpectedBody {
- bar: string;
- baz: number;
-}
-
-const myBodyValidation: RouteValidationFunction = (data, validationResult) => {
- const { ok, badRequest } = validationResult;
- const { bar, baz } = data || {};
- if (typeof bar === 'string' && typeof baz === 'number') {
- return ok({ bar, baz });
- } else {
- return badRequest('Wrong payload', ['body']);
- }
-}
-```
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `data` | `any` |
-| `validationResult` | [`RouteValidationResultFactory`](../interfaces/client._internal_namespace.RouteValidationResultFactory.md) |
-
-##### Returns
-
-{ `error?`: `never` ; `value`: `T` } \| { `error`: [`RouteValidationError`](../classes/client._internal_namespace.RouteValidationError.md) ; `value?`: `never` }
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:43
-
-___
-
-### RouteValidationSpec
-
-Ƭ **RouteValidationSpec**<`T`\>: `ObjectType` \| `Type`<`T`\> \| [`RouteValidationFunction`](client._internal_namespace.md#routevalidationfunction)<`T`\>
-
-Allowed property validation options: either @kbn/config-schema validations or custom validation functions
-
-See [RouteValidationFunction](client._internal_namespace.md#routevalidationfunction) for custom validation.
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:57
-
-___
-
-### RouteValidatorFullConfig
-
-Ƭ **RouteValidatorFullConfig**<`P`, `Q`, `B`\>: [`RouteValidatorConfig`](../interfaces/client._internal_namespace.RouteValidatorConfig.md)<`P`, `Q`, `B`\> & [`RouteValidatorOptions`](../interfaces/client._internal_namespace.RouteValidatorOptions.md)
-
-Route validations config and options merged into one object
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `P` |
-| `Q` |
-| `B` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/validator/validator.d.ts:101
-
-___
-
-### RunFunction
-
-Ƭ **RunFunction**: () => `Promise`<[`RunResult`](client._internal_namespace.md#runresult) \| `undefined` \| `void`\>
-
-#### Type declaration
-
-▸ (): `Promise`<[`RunResult`](client._internal_namespace.md#runresult) \| `undefined` \| `void`\>
-
-##### Returns
-
-`Promise`<[`RunResult`](client._internal_namespace.md#runresult) \| `undefined` \| `void`\>
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:64
-
-___
-
-### RunResult
-
-Ƭ **RunResult**: [`FailedRunResult`](client._internal_namespace.md#failedrunresult) \| [`SuccessfulRunResult`](client._internal_namespace.md#successfulrunresult)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:59
-
-___
-
-### SafeRouteMethod
-
-Ƭ **SafeRouteMethod**: ``"get"`` \| ``"options"``
-
-Set of HTTP methods not changing the state of the server.
-
-#### Defined in
-
-src/core/target/types/server/http/router/route.d.ts:12
-
-___
-
-### SavedObjectAttribute
-
-Ƭ **SavedObjectAttribute**: [`SavedObjectAttributeSingle`](client._internal_namespace.md#savedobjectattributesingle) \| [`SavedObjectAttributeSingle`](client._internal_namespace.md#savedobjectattributesingle)[]
-
-Type definition for a Saved Object attribute value
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:12
-
-___
-
-### SavedObjectAttributeSingle
-
-Ƭ **SavedObjectAttributeSingle**: `string` \| `number` \| `boolean` \| ``null`` \| `undefined` \| [`SavedObjectAttributes`](../interfaces/client._internal_namespace.SavedObjectAttributes.md)
-
-Don't use this type, it's simply a helper type for [SavedObjectAttribute](client._internal_namespace.md#savedobjectattribute)
-
-#### Defined in
-
-src/core/target/types/types/saved_objects.d.ts:6
-
-___
-
-### SavedObjectFindOptions
-
-Ƭ **SavedObjectFindOptions**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/saved_object.ts:72](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/saved_object.ts#L72)
-
-___
-
-### SavedObjectFindOptionsKueryNode
-
-Ƭ **SavedObjectFindOptionsKueryNode**: `Omit`<[`SavedObjectFindOptions`](client._internal_namespace.md#savedobjectfindoptions), ``"filter"``\> & { `filter?`: `KueryNode` }
-
-#### Defined in
-
-[x-pack/plugins/cases/server/common/types.ts:19](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/common/types.ts#L19)
-
-___
-
-### SavedObjectMigrationFn
-
-Ƭ **SavedObjectMigrationFn**<`InputAttributes`, `MigratedAttributes`\>: (`doc`: [`SavedObjectUnsanitizedDoc`](client._internal_namespace.md#savedobjectunsanitizeddoc)<`InputAttributes`\>, `context`: [`SavedObjectMigrationContext`](../interfaces/client._internal_namespace.SavedObjectMigrationContext.md)) => [`SavedObjectUnsanitizedDoc`](client._internal_namespace.md#savedobjectunsanitizeddoc)<`MigratedAttributes`\>
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `InputAttributes` | `unknown` |
-| `MigratedAttributes` | `unknown` |
-
-#### Type declaration
-
-▸ (`doc`, `context`): [`SavedObjectUnsanitizedDoc`](client._internal_namespace.md#savedobjectunsanitizeddoc)<`MigratedAttributes`\>
-
-A migration function for a [saved object type](../interfaces/client._internal_namespace.SavedObjectsType.md)
-used to migrate it to a given version
-
-**`example`**
-```typescript
-interface TypeV1Attributes {
- someKey: string;
- obsoleteProperty: number;
-}
-
-interface TypeV2Attributes {
- someKey: string;
- newProperty: string;
-}
-
-const migrateToV2: SavedObjectMigrationFn = (doc, { log }) => {
- const { obsoleteProperty, ...otherAttributes } = doc.attributes;
- // instead of mutating `doc` we make a shallow copy so that we can use separate types for the input
- // and output attributes. We don't need to make a deep copy, we just need to ensure that obsolete
- // attributes are not present on the returned doc.
- return {
- ...doc,
- attributes: {
- ...otherAttributes,
- newProperty: migrate(obsoleteProperty),
- },
- };
-};
-```
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `doc` | [`SavedObjectUnsanitizedDoc`](client._internal_namespace.md#savedobjectunsanitizeddoc)<`InputAttributes`\> |
-| `context` | [`SavedObjectMigrationContext`](../interfaces/client._internal_namespace.SavedObjectMigrationContext.md) |
-
-##### Returns
-
-[`SavedObjectUnsanitizedDoc`](client._internal_namespace.md#savedobjectunsanitizeddoc)<`MigratedAttributes`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/migrations/types.d.ts:39
-
-___
-
-### SavedObjectTypeExcludeFromUpgradeFilterHook
-
-Ƭ **SavedObjectTypeExcludeFromUpgradeFilterHook**: (`toolkit`: { `readonlyEsClient`: `Pick`<[`ElasticsearchClient`](client._internal_namespace.md#elasticsearchclient), ``"search"``\> }) => `estypes.QueryDslQueryContainer` \| `Promise`<`estypes.QueryDslQueryContainer`\>
-
-#### Type declaration
-
-▸ (`toolkit`): `estypes.QueryDslQueryContainer` \| `Promise`<`estypes.QueryDslQueryContainer`\>
-
-If defined, allows a type to run a search query and return a query filter that may match any documents which may
-be excluded from the next migration upgrade process. Useful for cleaning up large numbers of old documents which
-are no longer needed and may slow the migration process.
-
-If this hook fails, the migration will proceed without these documents having been filtered out, so this
-should not be used as a guarantee that these documents have been deleted.
-
-**`alpha`** Experimental and subject to change
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `toolkit` | `Object` |
-| `toolkit.readonlyEsClient` | `Pick`<[`ElasticsearchClient`](client._internal_namespace.md#elasticsearchclient), ``"search"``\> |
-
-##### Returns
-
-`estypes.QueryDslQueryContainer` \| `Promise`<`estypes.QueryDslQueryContainer`\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:479
-
-___
-
-### SavedObjectUnsanitizedDoc
-
-Ƭ **SavedObjectUnsanitizedDoc**<`T`\>: [`SavedObjectDoc`](../interfaces/client._internal_namespace.SavedObjectDoc.md)<`T`\> & `Partial`<[`Referencable`](../interfaces/client._internal_namespace.Referencable.md)\>
-
-Describes Saved Object documents from Kibana < 7.0.0 which don't have a
-`references` root property defined. This type should only be used in
-migrations.
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/serialization/types.d.ts:49
-
-___
-
-### SavedObjectsClientContract
-
-Ƭ **SavedObjectsClientContract**: `Pick`<[`SavedObjectsClient`](../classes/client._internal_namespace.SavedObjectsClient.md), keyof [`SavedObjectsClient`](../classes/client._internal_namespace.SavedObjectsClient.md)\>
-
-Saved Objects is Kibana's data persisentence mechanism allowing plugins to
-use Elasticsearch for storing plugin state.
-
-## SavedObjectsClient errors
-
-Since the SavedObjectsClient has its hands in everything we
-are a little paranoid about the way we present errors back to
-to application code. Ideally, all errors will be either:
-
- 1. Caused by bad implementation (ie. undefined is not a function) and
- as such unpredictable
- 2. An error that has been classified and decorated appropriately
- by the decorators in [SavedObjectsErrorHelpers](../classes/client._internal_namespace.SavedObjectsErrorHelpers.md)
-
-Type 1 errors are inevitable, but since all expected/handle-able errors
-should be Type 2 the `isXYZError()` helpers exposed at
-`SavedObjectsErrorHelpers` should be used to understand and manage error
-responses from the `SavedObjectsClient`.
-
-Type 2 errors are decorated versions of the source error, so if
-the elasticsearch client threw an error it will be decorated based
-on its type. That means that rather than looking for `error.body.error.type` or
-doing substring checks on `error.body.error.reason`, just use the helpers to
-understand the meaning of the error:
-
- ```js
- if (SavedObjectsErrorHelpers.isNotFoundError(error)) {
- // handle 404
- }
-
- if (SavedObjectsErrorHelpers.isNotAuthorizedError(error)) {
- // 401 handling should be automatic, but in case you wanted to know
- }
-
- // always rethrow the error unless you handle it
- throw error;
- ```
-
-### 404s from missing index
-
-From the perspective of application code and APIs the SavedObjectsClient is
-a black box that persists objects. One of the internal details that users have
-no control over is that we use an elasticsearch index for persistence and that
-index might be missing.
-
-At the time of writing we are in the process of transitioning away from the
-operating assumption that the SavedObjects index is always available. Part of
-this transition is handling errors resulting from an index missing. These used
-to trigger a 500 error in most cases, and in others cause 404s with different
-error messages.
-
-From my (Spencer) perspective, a 404 from the SavedObjectsApi is a 404; The
-object the request/call was targeting could not be found. This is why #14141
-takes special care to ensure that 404 errors are generic and don't distinguish
-between index missing or document missing.
-
-See [SavedObjectsClient](../classes/client._internal_namespace.SavedObjectsClient.md)
-See [SavedObjectsErrorHelpers](../classes/client._internal_namespace.SavedObjectsErrorHelpers.md)
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:195
-
-___
-
-### SavedObjectsCreatePointInTimeFinderOptions
-
-Ƭ **SavedObjectsCreatePointInTimeFinderOptions**: `Omit`<[`SavedObjectsFindOptions`](../interfaces/client._internal_namespace.SavedObjectsFindOptions.md), ``"page"`` \| ``"pit"`` \| ``"searchAfter"``\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/service/lib/point_in_time_finder.d.ts:7
-
-___
-
-### SavedObjectsExportTransform
-
-Ƭ **SavedObjectsExportTransform**<`T`\>: (`context`: [`SavedObjectsExportTransformContext`](../interfaces/client._internal_namespace.SavedObjectsExportTransformContext.md), `objects`: [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>[]) => [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)[] \| `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)[]\>
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Type declaration
-
-▸ (`context`, `objects`): [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)[] \| `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)[]\>
-
-Transformation function used to mutate the exported objects of the associated type.
-
-A type's export transform function will be executed once per user-initiated export,
-for all objects of that type.
-
-**`example`**
-Registering a transform function changing the object's attributes during the export
-```ts
-// src/plugins/my_plugin/server/plugin.ts
-import { myType } from './saved_objects';
-
-export class Plugin() {
- setup: (core: CoreSetup) => {
- core.savedObjects.registerType({
- ...myType,
- management: {
- ...myType.management,
- onExport: (ctx, objects) => {
- return objects.map((obj) => ({
- ...obj,
- attributes: {
- ...obj.attributes,
- enabled: false,
- }
- })
- }
- },
- });
- }
-}
-```
-
-**`example`**
-Registering a transform function adding additional objects to the export
-```ts
-// src/plugins/my_plugin/server/plugin.ts
-import { myType } from './saved_objects';
-
-export class Plugin() {
- setup: (core: CoreSetup) => {
- const savedObjectStartContractPromise = getStartServices().then(
- ([{ savedObjects: savedObjectsStart }]) => savedObjectsStart
- );
-
- core.savedObjects.registerType({
- ...myType,
- management: {
- ...myType.management,
- onExport: async (ctx, objects) => {
- const { getScopedClient } = await savedObjectStartContractPromise;
- const client = getScopedClient(ctx.request);
-
- const depResponse = await client.find({
- type: 'my-nested-object',
- hasReference: objs.map(({ id, type }) => ({ id, type })),
- });
-
- return [...objs, ...depResponse.saved_objects];
- }
- },
- });
- }
-}
-```
-
-**`remarks`** Trying to change an object's id or type during the transform will result in
- a runtime error during the export process.
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `context` | [`SavedObjectsExportTransformContext`](../interfaces/client._internal_namespace.SavedObjectsExportTransformContext.md) |
-| `objects` | [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>[] |
-
-##### Returns
-
-[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)[] \| `Promise`<[`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)[]\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/export/types.d.ts:160
-
-___
-
-### SavedObjectsExportablePredicate
-
-Ƭ **SavedObjectsExportablePredicate**<`Attributes`\>: (`obj`: [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`Attributes`\>) => `boolean`
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `Attributes` | `unknown` |
-
-#### Type declaration
-
-▸ (`obj`): `boolean`
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `obj` | [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`Attributes`\> |
-
-##### Returns
-
-`boolean`
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:467
-
-___
-
-### SavedObjectsFieldMapping
-
-Ƭ **SavedObjectsFieldMapping**: `estypes.MappingProperty` & { `dynamic?`: ``false`` \| ``"strict"`` }
-
-Describe a [saved object type mapping](../interfaces/client._internal_namespace.SavedObjectsTypeMappingDefinition.md) field.
-
-Please refer to [elasticsearch documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-types.html)
-For the mapping documentation
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/mappings/types.d.ts:89
-
-___
-
-### SavedObjectsImportHook
-
-Ƭ **SavedObjectsImportHook**<`T`\>: (`objects`: [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>[]) => [`SavedObjectsImportHookResult`](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md) \| `Promise`<[`SavedObjectsImportHookResult`](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md)\>
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | `unknown` |
-
-#### Type declaration
-
-▸ (`objects`): [`SavedObjectsImportHookResult`](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md) \| `Promise`<[`SavedObjectsImportHookResult`](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md)\>
-
-A hook associated with a specific saved object type, that will be invoked during
-the import process. The hook will have access to the objects of the registered type.
-
-Currently, the only supported feature for import hooks is to return warnings to be displayed
-in the UI when the import succeeds.
-
-**`remark`** The only interactions the hook can have with the import process is via the hook's
- response. Mutating the objects inside the hook's code will have no effect.
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `objects` | [`SavedObject`](../interfaces/client._internal_namespace.SavedObject.md)<`T`\>[] |
-
-##### Returns
-
-[`SavedObjectsImportHookResult`](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md) \| `Promise`<[`SavedObjectsImportHookResult`](../interfaces/client._internal_namespace.SavedObjectsImportHookResult.md)\>
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:227
-
-___
-
-### SavedObjectsImportWarning
-
-Ƭ **SavedObjectsImportWarning**: [`SavedObjectsImportSimpleWarning`](../interfaces/client._internal_namespace.SavedObjectsImportSimpleWarning.md) \| [`SavedObjectsImportActionRequiredWarning`](../interfaces/client._internal_namespace.SavedObjectsImportActionRequiredWarning.md)
-
-Composite type of all the possible types of import warnings.
-
-See [SavedObjectsImportSimpleWarning](../interfaces/client._internal_namespace.SavedObjectsImportSimpleWarning.md) and [SavedObjectsImportActionRequiredWarning](../interfaces/client._internal_namespace.SavedObjectsImportActionRequiredWarning.md)
-for more details.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/import/types.d.ts:203
-
-___
-
-### SavedObjectsNamespaceType
-
-Ƭ **SavedObjectsNamespaceType**: ``"single"`` \| ``"multiple"`` \| ``"multiple-isolated"`` \| ``"agnostic"``
-
-The namespace type dictates how a saved object can be interacted in relation to namespaces. Each type is mutually exclusive:
- * single (default): This type of saved object is namespace-isolated, e.g., it exists in only one namespace.
- * multiple: This type of saved object is shareable, e.g., it can exist in one or more namespaces.
- * multiple-isolated: This type of saved object is namespace-isolated, e.g., it exists in only one namespace, but object IDs must be
- unique across all namespaces. This is intended to be an intermediate step when objects with a "single" namespace type are being
- converted to a "multiple" namespace type. In other words, objects with a "multiple-isolated" namespace type will be *share-capable*,
- but will not actually be shareable until the namespace type is changed to "multiple".
- * agnostic: This type of saved object is global.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/types.d.ts:208
-
-___
-
-### SavedObjectsValidationSpec
-
-Ƭ **SavedObjectsValidationSpec**: `ObjectType`
-
-Allows for validating properties using @kbn/config-schema validations.
-
-#### Defined in
-
-src/core/target/types/server/saved_objects/validation/types.d.ts:7
-
-___
-
-### SpaceIdToNamespaceFunction
-
-Ƭ **SpaceIdToNamespaceFunction**: (`spaceId?`: `string`) => `string` \| `undefined`
-
-#### Type declaration
-
-▸ (`spaceId?`): `string` \| `undefined`
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `spaceId?` | `string` |
-
-##### Returns
-
-`string` \| `undefined`
-
-#### Defined in
-
-x-pack/plugins/actions/target/types/server/types.d.ts:18
-
-___
-
-### StringKeysAsVals
-
-Ƭ **StringKeysAsVals**<`T`\>: { [K in keyof T]: string extends K ? never : number extends K ? never : K }
-
-Converts an object type to a new object type where each string
-key is copied to the values of the object, and non string keys are
-given a `never` value. This allows us to map over the values and
-get the list of all string keys on a type in `KnownKeys`
-
-#### Type parameters
-
-| Name |
-| :------ |
-| `T` |
-
-#### Defined in
-
-src/core/target/types/server/http/router/headers.d.ts:9
-
-___
-
-### SubFeaturePrivilegeGroupType
-
-Ƭ **SubFeaturePrivilegeGroupType**: ``"mutually_exclusive"`` \| ``"independent"``
-
-The type of privilege group.
-- `mutually_exclusive`::
- Users will be able to select at most one privilege within this group.
- Privileges must be specified in descending order of permissiveness (e.g. `All`, `Read`, not `Read`, `All)
-- `independent`::
- Users will be able to select any combination of privileges within this group.
-
-#### Defined in
-
-x-pack/plugins/features/target/types/common/sub_feature.d.ts:21
-
-___
-
-### SuccessfulRunResult
-
-Ƭ **SuccessfulRunResult**: { `state`: `Record`<`string`, `unknown`\> } & { `runAt?`: `Date` ; `schedule?`: `never` } \| { `runAt?`: `never` ; `schedule?`: [`IntervalSchedule`](../interfaces/client._internal_namespace.IntervalSchedule.md) }
-
-The return value of a task's run function should be a promise of RunResult.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:28
-
-___
-
-### TaskDefinitionRegistry
-
-Ƭ **TaskDefinitionRegistry**: `Record`<`string`, [`TaskRegisterDefinition`](../interfaces/client._internal_namespace.TaskRegisterDefinition.md)\>
-
-A mapping of task type id to the task definition.
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task_type_dictionary.d.ts:52
-
-___
-
-### TaskRunCreatorFunction
-
-Ƭ **TaskRunCreatorFunction**: (`context`: [`RunContext`](../interfaces/client._internal_namespace.RunContext.md)) => [`CancellableTask`](../interfaces/client._internal_namespace.CancellableTask.md)
-
-#### Type declaration
-
-▸ (`context`): [`CancellableTask`](../interfaces/client._internal_namespace.CancellableTask.md)
-
-##### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `context` | [`RunContext`](../interfaces/client._internal_namespace.RunContext.md) |
-
-##### Returns
-
-[`CancellableTask`](../interfaces/client._internal_namespace.CancellableTask.md)
-
-#### Defined in
-
-x-pack/plugins/task_manager/target/types/server/task.d.ts:70
-
-___
-
-### UpdateAttachmentArgs
-
-Ƭ **UpdateAttachmentArgs**: [`UpdateArgs`](../interfaces/client._internal_namespace.UpdateArgs.md) & [`ClientArgs`](../interfaces/client._internal_namespace.ClientArgs-1.md)
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/attachments/index.ts:59](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/attachments/index.ts#L59)
-
-___
-
-### UserAction
-
-Ƭ **UserAction**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/user_actions/index.ts:85](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/user_actions/index.ts#L85)
-
-___
-
-### UserActionParameters
-
-Ƭ **UserActionParameters**<`T`\>: [`BuilderParameters`](../interfaces/client._internal_namespace.BuilderParameters.md)[`T`][``"parameters"``] & [`CommonArguments`](../interfaces/client._internal_namespace.CommonArguments.md)
-
-#### Type parameters
-
-| Name | Type |
-| :------ | :------ |
-| `T` | extends keyof [`BuilderParameters`](../interfaces/client._internal_namespace.BuilderParameters.md) |
-
-#### Defined in
-
-[x-pack/plugins/cases/server/services/user_actions/types.ts:71](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/services/user_actions/types.ts#L71)
-
-___
-
-### UserActionTypes
-
-Ƭ **UserActionTypes**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/user_actions/index.ts:86](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/user_actions/index.ts#L86)
-
-## Variables
-
-### ActionTypesRt
-
-• **ActionTypesRt**: `KeyofC`<{ `comment`: ``"comment"`` = 'comment'; `connector`: ``"connector"`` = 'connector'; `create_case`: ``"create_case"`` = 'create\_case'; `delete_case`: ``"delete_case"`` = 'delete\_case'; `description`: ``"description"`` = 'description'; `pushed`: ``"pushed"`` = 'pushed'; `settings`: ``"settings"`` = 'settings'; `status`: ``"status"`` = 'status'; `tags`: ``"tags"`` = 'tags'; `title`: ``"title"`` = 'title' }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/user_actions/common.ts:35](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/user_actions/common.ts#L35)
-
-___
-
-### ActionsRt
-
-• **ActionsRt**: `KeyofC`<{ `add`: ``"add"`` = 'add'; `create`: ``"create"`` = 'create'; `delete`: ``"delete"`` = 'delete'; `push_to_service`: ``"push_to_service"`` = 'push\_to\_service'; `update`: ``"update"`` = 'update' }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/user_actions/common.ts:36](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/user_actions/common.ts#L36)
-
-___
-
-### CasesFindRequestRt
-
-• **CasesFindRequestRt**: `PartialC`<{ `defaultSearchOperator`: `UnionC`<[`LiteralC`<``"AND"``\>, `LiteralC`<``"OR"``\>]\> ; `fields`: `ArrayC`<`StringC`\> ; `owner`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `page`: `Type`<`number`, `string`, `unknown`\> = NumberFromString; `perPage`: `Type`<`number`, `string`, `unknown`\> = NumberFromString; `reporters`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `search`: `StringC` = rt.string; `searchFields`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `sortField`: `StringC` = rt.string; `sortOrder`: `UnionC`<[`LiteralC`<``"desc"``\>, `LiteralC`<``"asc"``\>]\> ; `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt; `tags`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:136](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L136)
-
-___
-
-### EventSchema
-
-• **EventSchema**: `Type`
-
-#### Defined in
-
-x-pack/plugins/event_log/target/types/generated/schemas.d.ts:11
-
-___
-
-### SavedObjectFindOptionsRt
-
-• **SavedObjectFindOptionsRt**: `PartialC`<{ `defaultSearchOperator`: `UnionC`<[`LiteralC`<``"AND"``\>, `LiteralC`<``"OR"``\>]\> ; `fields`: `ArrayC`<`StringC`\> ; `filter`: `StringC` = rt.string; `hasReference`: `UnionC`<[`ArrayC`<`TypeC`<{ `id`: `StringC` = rt.string; `type`: `StringC` = rt.string }\>\>, `TypeC`<{ `id`: `StringC` = rt.string; `type`: `StringC` = rt.string }\>]\> ; `hasReferenceOperator`: `UnionC`<[`LiteralC`<``"AND"``\>, `LiteralC`<``"OR"``\>]\> ; `page`: `Type`<`number`, `string`, `unknown`\> = NumberFromString; `perPage`: `Type`<`number`, `string`, `unknown`\> = NumberFromString; `search`: `StringC` = rt.string; `searchFields`: `ArrayC`<`StringC`\> ; `sortField`: `StringC` = rt.string; `sortOrder`: `UnionC`<[`LiteralC`<``"desc"``\>, `LiteralC`<``"asc"``\>]\> }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/saved_object.ts:25](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/saved_object.ts#L25)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/client.md b/x-pack/plugins/cases/docs/cases_client/modules/client.md
deleted file mode 100644
index b03a7ba7673bb..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/client.md
+++ /dev/null
@@ -1,13 +0,0 @@
-[Cases Client API Interface](../README.md) / client
-
-# Module: client
-
-## Table of contents
-
-### Namespaces
-
-- [\_internal\_namespace](client._internal_namespace.md)
-
-### Classes
-
-- [CasesClient](../classes/client.CasesClient.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/configure_client._internal_namespace.md b/x-pack/plugins/cases/docs/cases_client/modules/configure_client._internal_namespace.md
deleted file mode 100644
index cb22acb5a298c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/configure_client._internal_namespace.md
+++ /dev/null
@@ -1,13 +0,0 @@
-[Cases Client API Interface](../README.md) / [configure/client](configure_client.md) / \_internal\_namespace
-
-# Namespace: \_internal\_namespace
-
-[configure/client](configure_client.md)._internal_namespace
-
-## Table of contents
-
-### Interfaces
-
-- [CreateMappingsArgs](../interfaces/configure_client._internal_namespace.CreateMappingsArgs.md)
-- [MappingsArgs](../interfaces/configure_client._internal_namespace.MappingsArgs.md)
-- [UpdateMappingsArgs](../interfaces/configure_client._internal_namespace.UpdateMappingsArgs.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/configure_client.md b/x-pack/plugins/cases/docs/cases_client/modules/configure_client.md
deleted file mode 100644
index 690afd51a4f65..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/configure_client.md
+++ /dev/null
@@ -1,37 +0,0 @@
-[Cases Client API Interface](../README.md) / configure/client
-
-# Module: configure/client
-
-## Table of contents
-
-### Namespaces
-
-- [\_internal\_namespace](configure_client._internal_namespace.md)
-
-### Interfaces
-
-- [ConfigureSubClient](../interfaces/configure_client.ConfigureSubClient.md)
-
-### Functions
-
-- [getConnectors](configure_client.md#getconnectors)
-
-## Functions
-
-### getConnectors
-
-▸ **getConnectors**(`__namedParameters`): `Promise`<[`FindActionResult`](../interfaces/client._internal_namespace.FindActionResult.md)[]\>
-
-#### Parameters
-
-| Name | Type |
-| :------ | :------ |
-| `__namedParameters` | [`CasesClientArgs`](../interfaces/client._internal_namespace.CasesClientArgs.md) |
-
-#### Returns
-
-`Promise`<[`FindActionResult`](../interfaces/client._internal_namespace.FindActionResult.md)[]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/server/client/configure/client.ts:206](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/server/client/configure/client.ts#L206)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/metrics_client._internal_namespace.md b/x-pack/plugins/cases/docs/cases_client/modules/metrics_client._internal_namespace.md
deleted file mode 100644
index 318b517747494..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/metrics_client._internal_namespace.md
+++ /dev/null
@@ -1,11 +0,0 @@
-[Cases Client API Interface](../README.md) / [metrics/client](metrics_client.md) / \_internal\_namespace
-
-# Namespace: \_internal\_namespace
-
-[metrics/client](metrics_client.md)._internal_namespace
-
-## Table of contents
-
-### Interfaces
-
-- [CaseMetricsParams](../interfaces/metrics_client._internal_namespace.CaseMetricsParams.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/metrics_client.md b/x-pack/plugins/cases/docs/cases_client/modules/metrics_client.md
deleted file mode 100644
index c4c7354ba5afe..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/metrics_client.md
+++ /dev/null
@@ -1,13 +0,0 @@
-[Cases Client API Interface](../README.md) / metrics/client
-
-# Module: metrics/client
-
-## Table of contents
-
-### Namespaces
-
-- [\_internal\_namespace](metrics_client._internal_namespace.md)
-
-### Interfaces
-
-- [MetricsSubClient](../interfaces/metrics_client.MetricsSubClient.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/stats_client.md b/x-pack/plugins/cases/docs/cases_client/modules/stats_client.md
deleted file mode 100644
index f0632f6ca0069..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/stats_client.md
+++ /dev/null
@@ -1,9 +0,0 @@
-[Cases Client API Interface](../README.md) / stats/client
-
-# Module: stats/client
-
-## Table of contents
-
-### Interfaces
-
-- [StatsSubClient](../interfaces/stats_client.StatsSubClient.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/typedoc_interfaces._internal_namespace.md b/x-pack/plugins/cases/docs/cases_client/modules/typedoc_interfaces._internal_namespace.md
deleted file mode 100644
index 38b2fc2ea5150..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/typedoc_interfaces._internal_namespace.md
+++ /dev/null
@@ -1,277 +0,0 @@
-[Cases Client API Interface](../README.md) / [typedoc\_interfaces](typedoc_interfaces.md) / \_internal\_namespace
-
-# Namespace: \_internal\_namespace
-
-[typedoc_interfaces](typedoc_interfaces.md)._internal_namespace
-
-## Table of contents
-
-### Type aliases
-
-- [AllCommentsResponse](typedoc_interfaces._internal_namespace.md#allcommentsresponse)
-- [CasePostRequest](typedoc_interfaces._internal_namespace.md#casepostrequest)
-- [CaseResolveResponse](typedoc_interfaces._internal_namespace.md#caseresolveresponse)
-- [CaseResponse](typedoc_interfaces._internal_namespace.md#caseresponse)
-- [CaseUserActionsResponse](typedoc_interfaces._internal_namespace.md#caseuseractionsresponse)
-- [CasesConfigurePatch](typedoc_interfaces._internal_namespace.md#casesconfigurepatch)
-- [CasesConfigureRequest](typedoc_interfaces._internal_namespace.md#casesconfigurerequest)
-- [CasesConfigureResponse](typedoc_interfaces._internal_namespace.md#casesconfigureresponse)
-- [CasesFindResponse](typedoc_interfaces._internal_namespace.md#casesfindresponse)
-- [CasesPatchRequest](typedoc_interfaces._internal_namespace.md#casespatchrequest)
-- [CasesResponse](typedoc_interfaces._internal_namespace.md#casesresponse)
-- [CommentsResponse](typedoc_interfaces._internal_namespace.md#commentsresponse)
-
-### Variables
-
-- [AllCommentsResponseRt](typedoc_interfaces._internal_namespace.md#allcommentsresponsert)
-- [CaseConfigureResponseRt](typedoc_interfaces._internal_namespace.md#caseconfigureresponsert)
-- [CasePostRequestRt](typedoc_interfaces._internal_namespace.md#casepostrequestrt)
-- [CaseResolveResponseRt](typedoc_interfaces._internal_namespace.md#caseresolveresponsert)
-- [CaseResponseRt](typedoc_interfaces._internal_namespace.md#caseresponsert)
-- [CaseUserActionsResponseRt](typedoc_interfaces._internal_namespace.md#caseuseractionsresponsert)
-- [CasesConfigurePatchRt](typedoc_interfaces._internal_namespace.md#casesconfigurepatchrt)
-- [CasesConfigureRequestRt](typedoc_interfaces._internal_namespace.md#casesconfigurerequestrt)
-- [CasesFindResponseRt](typedoc_interfaces._internal_namespace.md#casesfindresponsert)
-- [CasesPatchRequestRt](typedoc_interfaces._internal_namespace.md#casespatchrequestrt)
-- [CasesResponseRt](typedoc_interfaces._internal_namespace.md#casesresponsert)
-- [CommentsResponseRt](typedoc_interfaces._internal_namespace.md#commentsresponsert)
-
-## Type aliases
-
-### AllCommentsResponse
-
-Ƭ **AllCommentsResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:166](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L166)
-
-___
-
-### CasePostRequest
-
-Ƭ **CasePostRequest**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:280](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L280)
-
-___
-
-### CaseResolveResponse
-
-Ƭ **CaseResolveResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:282](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L282)
-
-___
-
-### CaseResponse
-
-Ƭ **CaseResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:281](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L281)
-
-___
-
-### CaseUserActionsResponse
-
-Ƭ **CaseUserActionsResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/user_actions/index.ts:82](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/user_actions/index.ts#L82)
-
-___
-
-### CasesConfigurePatch
-
-Ƭ **CasesConfigurePatch**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/configure.ts:81](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/configure.ts#L81)
-
-___
-
-### CasesConfigureRequest
-
-Ƭ **CasesConfigureRequest**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/configure.ts:80](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/configure.ts#L80)
-
-___
-
-### CasesConfigureResponse
-
-Ƭ **CasesConfigureResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/configure.ts:83](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/configure.ts#L83)
-
-___
-
-### CasesFindResponse
-
-Ƭ **CasesFindResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:286](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L286)
-
-___
-
-### CasesPatchRequest
-
-Ƭ **CasesPatchRequest**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:288](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L288)
-
-___
-
-### CasesResponse
-
-Ƭ **CasesResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:283](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L283)
-
-___
-
-### CommentsResponse
-
-Ƭ **CommentsResponse**: `rt.TypeOf`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:167](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L167)
-
-## Variables
-
-### AllCommentsResponseRt
-
-• **AllCommentsResponseRt**: `ArrayC`<`IntersectionC`<[`UnionC`<[`IntersectionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:150](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L150)
-
-___
-
-### CaseConfigureResponseRt
-
-• **CaseConfigureResponseRt**: `IntersectionC`<[`IntersectionC`<[`IntersectionC`<[`TypeC`<{ `closure_type`: `UnionC`<[`LiteralC`<``"close-by-user"``\>, `LiteralC`<``"close-by-pushing"``\>]\> = ClosureTypeRT; `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt }\>, `TypeC`<{ `owner`: `StringC` = rt.string }\>]\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `TypeC`<{ `mappings`: `ArrayC`<`TypeC`<{ `action_type`: `UnionC`<[`LiteralC`<``"append"``\>, `LiteralC`<``"nothing"``\>, `LiteralC`<``"overwrite"``\>]\> = ActionTypeRT; `source`: `UnionC`<[`LiteralC`<``"title"``\>, `LiteralC`<``"description"``\>, `LiteralC`<``"comments"``\>]\> = CaseFieldRT; `target`: `UnionC`<[`StringC`, `LiteralC`<``"not_mapped"``\>]\> = ThirdPartyFieldRT }\>\> ; `owner`: `StringC` = rt.string }\>, `TypeC`<{ `error`: `UnionC`<[`StringC`, `NullC`]\> ; `id`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/configure.ts:53](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/configure.ts#L53)
-
-___
-
-### CasePostRequestRt
-
-• **CasePostRequestRt**: `TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt; `description`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt; `tags`: `ArrayC`<`StringC`\> ; `title`: `StringC` = rt.string }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:108](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L108)
-
-___
-
-### CaseResolveResponseRt
-
-• **CaseResolveResponseRt**: `IntersectionC`<[`TypeC`<{ `case`: `IntersectionC`<[`IntersectionC`<[`TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt; `description`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt; `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt; `tags`: `ArrayC`<`StringC`\> ; `title`: `StringC` = rt.string }\>, `TypeC`<{ `closed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `closed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `external_service`: `UnionC`<[`IntersectionC`<[`TypeC`<{ `connector_id`: `StringC` = rt.string }\>, `TypeC`<{ `connector_name`: `StringC` = rt.string; `external_id`: `StringC` = rt.string; `external_title`: `StringC` = rt.string; `external_url`: `StringC` = rt.string; `pushed_at`: `StringC` = rt.string; `pushed_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT }\>]\>, `NullC`]\> = CaseFullExternalServiceRt; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `totalAlerts`: `NumberC` = rt.number; `totalComment`: `NumberC` = rt.number; `version`: `StringC` = rt.string }\>, `PartialC`<{ `comments`: `ArrayC`<`IntersectionC`<[`UnionC`<[`IntersectionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\> }\>]\> = CaseResponseRt; `outcome`: `UnionC`<[`LiteralC`<``"exactMatch"``\>, `LiteralC`<``"aliasMatch"``\>, `LiteralC`<``"conflict"``\>]\> }\>, `PartialC`<{ `alias_target_id`: `StringC` = rt.string }\>]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:212](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L212)
-
-___
-
-### CaseResponseRt
-
-• **CaseResponseRt**: `IntersectionC`<[`IntersectionC`<[`TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt; `description`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt; `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt; `tags`: `ArrayC`<`StringC`\> ; `title`: `StringC` = rt.string }\>, `TypeC`<{ `closed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `closed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `external_service`: `UnionC`<[`IntersectionC`<[`TypeC`<{ `connector_id`: `StringC` = rt.string }\>, `TypeC`<{ `connector_name`: `StringC` = rt.string; `external_id`: `StringC` = rt.string; `external_title`: `StringC` = rt.string; `external_url`: `StringC` = rt.string; `pushed_at`: `StringC` = rt.string; `pushed_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT }\>]\>, `NullC`]\> = CaseFullExternalServiceRt; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `totalAlerts`: `NumberC` = rt.number; `totalComment`: `NumberC` = rt.number; `version`: `StringC` = rt.string }\>, `PartialC`<{ `comments`: `ArrayC`<`IntersectionC`<[`UnionC`<[`IntersectionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\> }\>]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:199](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L199)
-
-___
-
-### CaseUserActionsResponseRt
-
-• **CaseUserActionsResponseRt**: `ArrayC`<`IntersectionC`<[`IntersectionC`<[`UnionC`<[`UnionC`<[`TypeC`<{ `payload`: `TypeC`<{ `description`: `StringC` = rt.string }\> = DescriptionUserActionPayloadRt; `type`: `LiteralC`<``"description"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{ `comment`: `UnionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>]\> = CommentRequestRt }\> = CommentUserActionPayloadRt; `type`: `LiteralC`<``"comment"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{ `tags`: `ArrayC`<`StringC`\> }\> = TagsUserActionPayloadRt; `type`: `LiteralC`<``"tags"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{ `title`: `StringC` = rt.string }\> = TitleUserActionPayloadRt; `type`: `LiteralC`<``"title"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{ `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt }\> = SettingsUserActionPayloadRt; `type`: `LiteralC`<``"settings"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{ `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt }\> = StatusUserActionPayloadRt; `type`: `LiteralC`<``"status"``\> }\>]\>, `IntersectionC`<[`TypeC`<{ `type`: `LiteralC`<``"create_case"``\> }\>, `TypeC`<{ `payload`: `IntersectionC`<[`TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt }\>, `TypeC`<{ `description`: `StringC` = DescriptionUserActionPayloadRt.props.description; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsUserActionPayloadRt.props.settings; `status`: `StringC` = rt.string; `tags`: `ArrayC`<`StringC`\> = TagsUserActionPayloadRt.props.tags; `title`: `StringC` = TitleUserActionPayloadRt.props.title }\>]\> }\>]\>, `TypeC`<{ `payload`: `TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt }\> = ConnectorUserActionPayloadRt; `type`: `LiteralC`<``"connector"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{ `externalService`: `IntersectionC`<[`TypeC`<{ `connector_id`: `StringC` = rt.string }\>, `TypeC`<{ `connector_name`: `StringC` = rt.string; `external_id`: `StringC` = rt.string; `external_title`: `StringC` = rt.string; `external_url`: `StringC` = rt.string; `pushed_at`: `StringC` = rt.string; `pushed_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT }\>]\> = CaseExternalServiceBasicRt }\> = PushedUserActionPayloadRt; `type`: `LiteralC`<``"pushed"``\> }\>, `TypeC`<{ `payload`: `TypeC`<{}\> ; `type`: `LiteralC`<``"delete_case"``\> }\>]\>, `TypeC`<{ `action`: `KeyofC`<{ `add`: ``"add"`` = 'add'; `create`: ``"create"`` = 'create'; `delete`: ``"delete"`` = 'delete'; `push_to_service`: ``"push_to_service"`` = 'push\_to\_service'; `update`: ``"update"`` = 'update' }\> = ActionsRt; `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string }\>]\>, `TypeC`<{ `action_id`: `StringC` = rt.string; `case_id`: `StringC` = rt.string; `comment_id`: `UnionC`<[`StringC`, `NullC`]\> }\>]\>\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/user_actions/index.ts:76](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/user_actions/index.ts#L76)
-
-___
-
-### CasesConfigurePatchRt
-
-• **CasesConfigurePatchRt**: `IntersectionC`<[`PartialC`<{ `closure_type`: `UnionC`<[`LiteralC`<``"close-by-user"``\>, `LiteralC`<``"close-by-pushing"``\>]\> = ClosureTypeRT; `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt }\>, `TypeC`<{ `version`: `StringC` = rt.string }\>]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/configure.ts:38](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/configure.ts#L38)
-
-___
-
-### CasesConfigureRequestRt
-
-• **CasesConfigureRequestRt**: `IntersectionC`<[`TypeC`<{ `closure_type`: `UnionC`<[`LiteralC`<``"close-by-user"``\>, `LiteralC`<``"close-by-pushing"``\>]\> = ClosureTypeRT; `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt }\>, `TypeC`<{ `owner`: `StringC` = rt.string }\>]\> = `CasesConfigureBasicRt`
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/configure.ts:37](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/configure.ts#L37)
-
-___
-
-### CasesFindResponseRt
-
-• **CasesFindResponseRt**: `IntersectionC`<[`TypeC`<{ `cases`: `ArrayC`<`IntersectionC`<[`IntersectionC`<[`TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt; `description`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt; `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt; `tags`: `ArrayC`<`StringC`\> ; `title`: `StringC` = rt.string }\>, `TypeC`<{ `closed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `closed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `external_service`: `UnionC`<[`IntersectionC`<[`TypeC`<{ `connector_id`: `StringC` = rt.string }\>, `TypeC`<{ `connector_name`: `StringC` = rt.string; `external_id`: `StringC` = rt.string; `external_title`: `StringC` = rt.string; `external_url`: `StringC` = rt.string; `pushed_at`: `StringC` = rt.string; `pushed_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT }\>]\>, `NullC`]\> = CaseFullExternalServiceRt; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `totalAlerts`: `NumberC` = rt.number; `totalComment`: `NumberC` = rt.number; `version`: `StringC` = rt.string }\>, `PartialC`<{ `comments`: `ArrayC`<`IntersectionC`<[`UnionC`<[`IntersectionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\> }\>]\>\> ; `page`: `NumberC` = rt.number; `per_page`: `NumberC` = rt.number; `total`: `NumberC` = rt.number }\>, `TypeC`<{ `count_closed_cases`: `NumberC` = rt.number; `count_in_progress_cases`: `NumberC` = rt.number; `count_open_cases`: `NumberC` = rt.number }\>]\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:222](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L222)
-
-___
-
-### CasesPatchRequestRt
-
-• **CasesPatchRequestRt**: `TypeC`<{ `cases`: `ArrayC`<`IntersectionC`<[`PartialC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt; `description`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt; `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt; `tags`: `ArrayC`<`StringC`\> ; `title`: `StringC` = rt.string }\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\> }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:240](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L240)
-
-___
-
-### CasesResponseRt
-
-• **CasesResponseRt**: `ArrayC`<`IntersectionC`<[`IntersectionC`<[`TypeC`<{ `connector`: `IntersectionC`<[`TypeC`<{ `id`: `StringC` = rt.string }\>, `UnionC`<[`IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `issueType`: `UnionC`<[`StringC`, `NullC`]\> ; `parent`: `UnionC`<[`StringC`, `NullC`]\> ; `priority`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`jira`](client._internal_namespace.md#jira)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `NullC` = rt.null; `type`: `LiteralC`<[`none`](client._internal_namespace.md#none)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>, `IntersectionC`<[`TypeC`<{ `fields`: `UnionC`<[`TypeC`<{ `incidentTypes`: `UnionC`<[`ArrayC`<`StringC`\>, `NullC`]\> ; `severityCode`: `UnionC`<[`StringC`, `NullC`]\> }\>, `NullC`]\> ; `type`: `LiteralC`<[`resilient`](client._internal_namespace.md#resilient)\> }\>, `TypeC`<{ `name`: `StringC` = rt.string }\>]\>]\>]\> = CaseConnectorRt; `description`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `settings`: `TypeC`<{ `syncAlerts`: `BooleanC` = rt.boolean }\> = SettingsRt; `status`: `UnionC`<[`LiteralC`<[`open`](../enums/client._internal_namespace.CaseStatuses.md#open)\>, `LiteralC`<`any`[`any`]\>, `LiteralC`<[`closed`](../enums/client._internal_namespace.CaseStatuses.md#closed)\>]\> = CaseStatusRt; `tags`: `ArrayC`<`StringC`\> ; `title`: `StringC` = rt.string }\>, `TypeC`<{ `closed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `closed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `external_service`: `UnionC`<[`IntersectionC`<[`TypeC`<{ `connector_id`: `StringC` = rt.string }\>, `TypeC`<{ `connector_name`: `StringC` = rt.string; `external_id`: `StringC` = rt.string; `external_title`: `StringC` = rt.string; `external_url`: `StringC` = rt.string; `pushed_at`: `StringC` = rt.string; `pushed_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT }\>]\>, `NullC`]\> = CaseFullExternalServiceRt; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `totalAlerts`: `NumberC` = rt.number; `totalComment`: `NumberC` = rt.number; `version`: `StringC` = rt.string }\>, `PartialC`<{ `comments`: `ArrayC`<`IntersectionC`<[`UnionC`<[`IntersectionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\> }\>]\>\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/case.ts:241](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/case.ts#L241)
-
-___
-
-### CommentsResponseRt
-
-• **CommentsResponseRt**: `TypeC`<{ `comments`: `ArrayC`<`IntersectionC`<[`UnionC`<[`IntersectionC`<[`TypeC`<{ `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`user`](client._internal_namespace.md#user)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `alertId`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `index`: `UnionC`<[`ArrayC`<`StringC`\>, `StringC`]\> ; `owner`: `StringC` = rt.string; `rule`: `TypeC`<{ `id`: `UnionC`<[`StringC`, `NullC`]\> ; `name`: `UnionC`<[`StringC`, `NullC`]\> }\> ; `type`: `LiteralC`<[`alert`](client._internal_namespace.md#alert)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>, `IntersectionC`<[`TypeC`<{ `actions`: `TypeC`<{ `targets`: `ArrayC`<`TypeC`<{ `endpointId`: `StringC` = rt.string; `hostname`: `StringC` = rt.string }\>\> ; `type`: `StringC` = rt.string }\> ; `comment`: `StringC` = rt.string; `owner`: `StringC` = rt.string; `type`: `LiteralC`<[`actions`](client._internal_namespace.md#actions)\> }\>, `TypeC`<{ `created_at`: `StringC` = rt.string; `created_by`: `TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\> = UserRT; `owner`: `StringC` = rt.string; `pushed_at`: `UnionC`<[`StringC`, `NullC`]\> ; `pushed_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> ; `updated_at`: `UnionC`<[`StringC`, `NullC`]\> ; `updated_by`: `UnionC`<[`TypeC`<{ `email`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `full_name`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> ; `username`: `UnionC`<[`UndefinedC`, `NullC`, `StringC`]\> }\>, `NullC`]\> }\>]\>]\>, `TypeC`<{ `id`: `StringC` = rt.string; `version`: `StringC` = rt.string }\>]\>\> ; `page`: `NumberC` = rt.number; `per_page`: `NumberC` = rt.number; `total`: `NumberC` = rt.number }\>
-
-#### Defined in
-
-[x-pack/plugins/cases/common/api/cases/comment.ts:143](https://github.com/elastic/kibana/blob/c427bf270ae/x-pack/plugins/cases/common/api/cases/comment.ts#L143)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/typedoc_interfaces.md b/x-pack/plugins/cases/docs/cases_client/modules/typedoc_interfaces.md
deleted file mode 100644
index 9f9d1f9a8808c..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/typedoc_interfaces.md
+++ /dev/null
@@ -1,28 +0,0 @@
-[Cases Client API Interface](../README.md) / typedoc\_interfaces
-
-# Module: typedoc\_interfaces
-
-This file defines simpler types for typedoc. This helps reduce the type alias expansion for the io-ts types because it
-can be very large. These types are equivalent to the io-ts aliases.
-
-## Table of contents
-
-### Namespaces
-
-- [\_internal\_namespace](typedoc_interfaces._internal_namespace.md)
-
-### Interfaces
-
-- [IAllCommentsResponse](../interfaces/typedoc_interfaces.IAllCommentsResponse.md)
-- [ICasePostRequest](../interfaces/typedoc_interfaces.ICasePostRequest.md)
-- [ICaseResolveResponse](../interfaces/typedoc_interfaces.ICaseResolveResponse.md)
-- [ICaseResponse](../interfaces/typedoc_interfaces.ICaseResponse.md)
-- [ICaseUserActionsResponse](../interfaces/typedoc_interfaces.ICaseUserActionsResponse.md)
-- [ICasesConfigurePatch](../interfaces/typedoc_interfaces.ICasesConfigurePatch.md)
-- [ICasesConfigureRequest](../interfaces/typedoc_interfaces.ICasesConfigureRequest.md)
-- [ICasesConfigureResponse](../interfaces/typedoc_interfaces.ICasesConfigureResponse.md)
-- [ICasesFindRequest](../interfaces/typedoc_interfaces.ICasesFindRequest.md)
-- [ICasesFindResponse](../interfaces/typedoc_interfaces.ICasesFindResponse.md)
-- [ICasesPatchRequest](../interfaces/typedoc_interfaces.ICasesPatchRequest.md)
-- [ICasesResponse](../interfaces/typedoc_interfaces.ICasesResponse.md)
-- [ICommentsResponse](../interfaces/typedoc_interfaces.ICommentsResponse.md)
diff --git a/x-pack/plugins/cases/docs/cases_client/modules/user_actions_client.md b/x-pack/plugins/cases/docs/cases_client/modules/user_actions_client.md
deleted file mode 100644
index 4ec27e0beee46..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client/modules/user_actions_client.md
+++ /dev/null
@@ -1,10 +0,0 @@
-[Cases Client API Interface](../README.md) / user\_actions/client
-
-# Module: user\_actions/client
-
-## Table of contents
-
-### Interfaces
-
-- [UserActionGet](../interfaces/user_actions_client.UserActionGet.md)
-- [UserActionsSubClient](../interfaces/user_actions_client.UserActionsSubClient.md)
diff --git a/x-pack/plugins/cases/docs/cases_client_typedoc.json b/x-pack/plugins/cases/docs/cases_client_typedoc.json
deleted file mode 100644
index a5e1305196491..0000000000000
--- a/x-pack/plugins/cases/docs/cases_client_typedoc.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "entryPoints": [
- "../server/client/client.ts",
- "../server/client/typedoc_interfaces.ts",
- "../server/client/attachments/client.ts",
- "../server/client/cases/client.ts",
- "../server/client/cases/get.ts",
- "../server/client/cases/push.ts",
- "../server/client/configure/client.ts",
- "../server/client/metrics/client.ts",
- "../server/client/stats/client.ts",
- "../server/client/user_actions/client.ts"
- ],
- "entryPointStrategy": "expand",
- "exclude": [
- "**/mock.ts",
- "../server/client/cases/+(mock.ts|utils.ts|utils.test.ts|types.ts)"
- ],
- "excludeExternals": true,
- "out": "cases_client",
- "theme": "markdown",
- "internalNamespace": "_internal_namespace",
- "plugin": ["typedoc-plugin-markdown", "typedoc-plugin-missing-exports"],
- "readme": "none",
- "name": "Cases Client API Interface",
- "gitRemote": "upstream"
-}
diff --git a/x-pack/plugins/data_visualizer/common/types/field_request_config.ts b/x-pack/plugins/data_visualizer/common/types/field_request_config.ts
index f0ea7079bf750..e15e39ffb46de 100644
--- a/x-pack/plugins/data_visualizer/common/types/field_request_config.ts
+++ b/x-pack/plugins/data_visualizer/common/types/field_request_config.ts
@@ -17,6 +17,7 @@ export interface FieldRequestConfig {
fieldName: string;
type: JobFieldType;
cardinality: number;
+ existsInDocs: boolean;
}
export interface DocumentCountBuckets {
diff --git a/x-pack/plugins/data_visualizer/public/application/common/components/fields_stats_grid/filter_fields.ts b/x-pack/plugins/data_visualizer/public/application/common/components/fields_stats_grid/filter_fields.ts
index de97b6007d877..145a8fa5f8867 100644
--- a/x-pack/plugins/data_visualizer/public/application/common/components/fields_stats_grid/filter_fields.ts
+++ b/x-pack/plugins/data_visualizer/public/application/common/components/fields_stats_grid/filter_fields.ts
@@ -6,15 +6,15 @@
*/
import { JOB_FIELD_TYPES } from '../../../../../common/constants';
-import type {
- FileBasedFieldVisConfig,
- FileBasedUnknownFieldVisConfig,
-} from '../../../../../common/types/field_vis_config';
-export function filterFields(
- fields: Array,
- visibleFieldNames: string[],
- visibleFieldTypes: string[]
+interface CommonFieldConfig {
+ type: string;
+ fieldName?: string;
+}
+export function filterFields(
+ fields: T[],
+ visibleFieldNames: string[] | undefined,
+ visibleFieldTypes: string[] | undefined
) {
let items = fields;
diff --git a/x-pack/plugins/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx b/x-pack/plugins/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx
index cc9cd075c7615..5d4c4de8ca901 100644
--- a/x-pack/plugins/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx
+++ b/x-pack/plugins/data_visualizer/public/application/common/components/stats_table/data_visualizer_stats_table.tsx
@@ -19,6 +19,7 @@ import {
LEFT_ALIGNMENT,
RIGHT_ALIGNMENT,
EuiResizeObserver,
+ EuiLoadingSpinner,
} from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { EuiTableComputedColumnType } from '@elastic/eui/src/components/basic_table/table_types';
@@ -279,6 +280,15 @@ export const DataVisualizerTable = ({
),
render: (item: DataVisualizerTableItem) => {
if (item === undefined || showDistributions === false) return null;
+
+ if ('loading' in item && item.loading === true) {
+ return (
+
+
+
+ );
+ }
+
if (
(item.type === JOB_FIELD_TYPES.KEYWORD || item.type === JOB_FIELD_TYPES.IP) &&
item.stats?.topValues !== undefined
diff --git a/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/file_data_visualizer_view/file_data_visualizer_view.js b/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/file_data_visualizer_view/file_data_visualizer_view.js
index 5d5f07f2279c9..ae0a979008eff 100644
--- a/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/file_data_visualizer_view/file_data_visualizer_view.js
+++ b/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/file_data_visualizer_view/file_data_visualizer_view.js
@@ -74,7 +74,7 @@ export class FileDataVisualizerView extends Component {
// note, calling hasImportPermission with no arguments just checks the
// cluster privileges, the user will still need index privileges to create and ingest
const hasPermissionToImport = await this.props.fileUpload.hasImportPermission({
- checkCreateIndexPattern: false,
+ checkCreateDataView: false,
checkHasManagePipeline: true,
});
this.setState({ hasPermissionToImport });
diff --git a/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/import_view/import_view.js b/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/import_view/import_view.js
index b62e43c5fc2e2..c5021f930c942 100644
--- a/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/import_view/import_view.js
+++ b/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/components/import_view/import_view.js
@@ -116,7 +116,7 @@ export class ImportView extends Component {
// check to see if the user has permission to create and ingest data into the specified index
if (
(await fileUpload.hasImportPermission({
- checkCreateIndexPattern: createDataView,
+ checkCreateDataView: createDataView,
checkHasManagePipeline: true,
indexName: index,
})) === false
diff --git a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/constants/index_data_visualizer_viewer.ts b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/constants/index_data_visualizer_viewer.ts
index cd12706d0bc9b..c1b314a19cf37 100644
--- a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/constants/index_data_visualizer_viewer.ts
+++ b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/constants/index_data_visualizer_viewer.ts
@@ -6,3 +6,5 @@
*/
export const DATA_VISUALIZER_INDEX_VIEWER = 'DATA_VISUALIZER_INDEX_VIEWER';
+
+export const MAX_CONCURRENT_REQUESTS = 10;
diff --git a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx
index 8097d400c3b71..c44932470c7e8 100644
--- a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx
+++ b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx
@@ -84,6 +84,7 @@ export const EmbeddableWrapper = ({
},
[dataVisualizerListState, onOutputChange]
);
+
const { configs, searchQueryLanguage, searchString, extendedColumns, progress, setLastRefresh } =
useDataVisualizerGridData(input, dataVisualizerListState);
diff --git a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts
index bbf088c53d94c..7c821f698d8df 100644
--- a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts
+++ b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts
@@ -53,7 +53,6 @@ export const useDataVisualizerGridData = (
const { services } = useDataVisualizerKibana();
const { uiSettings, data } = services;
const { samplerShardSize, visibleFieldTypes, showEmptyFields } = dataVisualizerListState;
- const dataVisualizerListStateRef = useRef(dataVisualizerListState);
const [lastRefresh, setLastRefresh] = useState(0);
const searchSessionId = input.sessionId;
@@ -227,11 +226,11 @@ export const useDataVisualizerGridData = (
if (overallStatsProgress.loaded < 100) return;
const existMetricFields = metricConfigs
.map((config) => {
- if (config.existsInDocs === false) return;
return {
fieldName: config.fieldName,
type: config.type,
cardinality: config.stats?.cardinality ?? 0,
+ existsInDocs: config.existsInDocs,
};
})
.filter((c) => c !== undefined) as FieldRequestConfig[];
@@ -240,11 +239,11 @@ export const useDataVisualizerGridData = (
// Top values will be obtained on a sample if cardinality > 100000.
const existNonMetricFields: FieldRequestConfig[] = nonMetricConfigs
.map((config) => {
- if (config.existsInDocs === false) return;
return {
fieldName: config.fieldName,
type: config.type,
cardinality: config.stats?.cardinality ?? 0,
+ existsInDocs: config.existsInDocs,
};
})
.filter((c) => c !== undefined) as FieldRequestConfig[];
@@ -255,7 +254,7 @@ export const useDataVisualizerGridData = (
const strategyResponse = useFieldStatsSearchStrategy(
fieldStatsRequest,
configsWithoutStats,
- dataVisualizerListStateRef.current
+ dataVisualizerListState
);
const combinedProgress = useMemo(
@@ -325,7 +324,7 @@ export const useDataVisualizerGridData = (
...fieldData,
fieldFormat: currentDataView.getFormatterForField(field),
type: JOB_FIELD_TYPES.NUMBER,
- loading: true,
+ loading: fieldData?.existsInDocs ?? true,
aggregatable: true,
deletable: field.runtimeField !== undefined,
};
@@ -436,41 +435,46 @@ export const useDataVisualizerGridData = (
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [overallStats, showEmptyFields]);
- const configs = useMemo(() => {
- const fieldStats = strategyResponse.fieldStats;
- let combinedConfigs = [...nonMetricConfigs, ...metricConfigs];
- if (visibleFieldTypes && visibleFieldTypes.length > 0) {
- combinedConfigs = combinedConfigs.filter(
- (config) => visibleFieldTypes.findIndex((field) => field === config.type) > -1
- );
- }
- if (visibleFieldNames && visibleFieldNames.length > 0) {
- combinedConfigs = combinedConfigs.filter(
- (config) => visibleFieldNames.findIndex((field) => field === config.fieldName) > -1
- );
- }
-
- if (fieldStats) {
- combinedConfigs = combinedConfigs.map((c) => {
- const loadedFullStats = fieldStats.get(c.fieldName) ?? {};
- return loadedFullStats
- ? {
- ...c,
- loading: false,
- stats: { ...c.stats, ...loadedFullStats },
- }
- : c;
- });
- }
+ const configs = useMemo(
+ () => {
+ const fieldStats = strategyResponse.fieldStats;
+ let combinedConfigs = [...nonMetricConfigs, ...metricConfigs];
+ if (visibleFieldTypes && visibleFieldTypes.length > 0) {
+ combinedConfigs = combinedConfigs.filter(
+ (config) => visibleFieldTypes.findIndex((field) => field === config.type) > -1
+ );
+ }
+ if (visibleFieldNames && visibleFieldNames.length > 0) {
+ combinedConfigs = combinedConfigs.filter(
+ (config) => visibleFieldNames.findIndex((field) => field === config.fieldName) > -1
+ );
+ }
- return combinedConfigs;
- }, [
- nonMetricConfigs,
- metricConfigs,
- visibleFieldTypes,
- visibleFieldNames,
- strategyResponse.fieldStats,
- ]);
+ if (fieldStats) {
+ combinedConfigs = combinedConfigs.map((c) => {
+ const loadedFullStats = fieldStats.get(c.fieldName) ?? {};
+ return loadedFullStats
+ ? {
+ ...c,
+ loading: false,
+ stats: { ...c.stats, ...loadedFullStats },
+ }
+ : c;
+ });
+ }
+ return combinedConfigs;
+ },
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ [
+ nonMetricConfigs,
+ metricConfigs,
+ visibleFieldTypes,
+ visibleFieldNames,
+ strategyResponse.progress.loaded,
+ dataVisualizerListState.pageIndex,
+ dataVisualizerListState.pageSize,
+ ]
+ );
// Some actions open up fly-out or popup
// This variable is used to keep track of them and clean up when unmounting
diff --git a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_field_stats.ts b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_field_stats.ts
index 19eaf8be68327..750c1d417e84d 100644
--- a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_field_stats.ts
+++ b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_field_stats.ts
@@ -6,10 +6,11 @@
*/
import { useCallback, useEffect, useReducer, useRef, useState } from 'react';
-import { combineLatest, Observable, Subject, Subscription } from 'rxjs';
+import { combineLatest, from, Observable, Subject, Subscription } from 'rxjs';
import { i18n } from '@kbn/i18n';
import { last, cloneDeep } from 'lodash';
-import { switchMap } from 'rxjs/operators';
+import { mergeMap, switchMap } from 'rxjs/operators';
+import { Comparators } from '@elastic/eui';
import type {
DataStatsFetchProgress,
FieldStatsSearchStrategyReturnBase,
@@ -29,6 +30,9 @@ import { getInitialProgress, getReducer } from '../progress_utils';
import { MAX_EXAMPLES_DEFAULT } from '../search_strategy/requests/constants';
import type { ISearchOptions } from '../../../../../../../src/plugins/data/common';
import { getFieldsStats } from '../search_strategy/requests/get_fields_stats';
+import { MAX_CONCURRENT_REQUESTS } from '../constants/index_data_visualizer_viewer';
+import { filterFields } from '../../common/components/fields_stats_grid/filter_fields';
+
interface FieldStatsParams {
metricConfigs: FieldRequestConfig[];
nonMetricConfigs: FieldRequestConfig[];
@@ -61,7 +65,7 @@ const createBatchedRequests = (fields: Field[], maxBatchSize = 10) => {
export function useFieldStatsSearchStrategy(
searchStrategyParams: OverallStatsSearchStrategyParams | undefined,
fieldStatsParams: FieldStatsParams | undefined,
- initialDataVisualizerListState: DataVisualizerIndexBasedAppState
+ dataVisualizerListState: DataVisualizerIndexBasedAppState
): FieldStatsSearchStrategyReturnBase {
const {
services: {
@@ -106,19 +110,41 @@ export function useFieldStatsSearchStrategy(
return;
}
- const { sortField, sortDirection } = initialDataVisualizerListState;
+ const { sortField, sortDirection } = dataVisualizerListState;
/**
* Sort the list of fields by the initial sort field and sort direction
* Then divide into chunks by the initial page size
*/
- let sortedConfigs = [...fieldStatsParams.metricConfigs, ...fieldStatsParams.nonMetricConfigs];
+ const itemsSorter = Comparators.property(
+ sortField as string,
+ Comparators.default(sortDirection as 'asc' | 'desc' | undefined)
+ );
- if (sortField === 'fieldName' || sortField === 'type') {
- sortedConfigs = sortedConfigs.sort((a, b) => a[sortField].localeCompare(b[sortField]));
- }
- if (sortDirection === 'desc') {
- sortedConfigs = sortedConfigs.reverse();
+ const preslicedSortedConfigs = [
+ ...fieldStatsParams.metricConfigs,
+ ...fieldStatsParams.nonMetricConfigs,
+ ].sort(itemsSorter);
+
+ const filteredItems = filterFields(
+ preslicedSortedConfigs,
+ dataVisualizerListState.visibleFieldNames,
+ dataVisualizerListState.visibleFieldTypes
+ );
+
+ const { pageIndex, pageSize } = dataVisualizerListState;
+
+ const pageOfConfigs = filteredItems.filteredFields
+ ?.slice(pageIndex * pageSize, (pageIndex + 1) * pageSize)
+ .filter((d) => d.existsInDocs === true);
+
+ if (!pageOfConfigs || pageOfConfigs.length === 0) {
+ setFetchState({
+ loaded: 100,
+ isRunning: false,
+ });
+
+ return;
}
const filterCriteria = buildBaseFilterCriteria(
@@ -149,7 +175,7 @@ export function useFieldStatsSearchStrategy(
};
const batches = createBatchedRequests(
- sortedConfigs.map((config, idx) => ({
+ pageOfConfigs.map((config, idx) => ({
fieldName: config.fieldName,
type: config.type,
cardinality: config.cardinality,
@@ -161,11 +187,10 @@ export function useFieldStatsSearchStrategy(
const statsMap$ = new Subject();
const fieldsToRetry$ = new Subject();
- const fieldStatsSub = combineLatest(
- batches
- .map((batch) => getFieldsStats(data.search, params, batch, searchOptions))
- .filter((obs) => obs !== undefined) as Array>
- );
+ const fieldStatsToFetch = batches
+ .map((batch) => getFieldsStats(data.search, params, batch, searchOptions))
+ .filter((obs) => obs !== undefined) as Array>;
+
const onError = (error: any) => {
toasts.addError(error, {
title: i18n.translate('xpack.dataVisualizer.index.errorFetchingFieldStatisticsMessage', {
@@ -184,17 +209,24 @@ export function useFieldStatsSearchStrategy(
});
};
+ const statsMapTmp = new Map();
+
// First, attempt to fetch field stats in batches of 10
- searchSubscription$.current = fieldStatsSub.subscribe({
- next: (resp) => {
- if (resp) {
- const statsMap = new Map();
- const failedFields: Field[] = [];
- resp.forEach((batchResponse) => {
+ searchSubscription$.current = from(fieldStatsToFetch)
+ .pipe(mergeMap((observable) => observable, MAX_CONCURRENT_REQUESTS))
+ .subscribe({
+ next: (batchResponse) => {
+ setFetchState({
+ ...getInitialProgress(),
+ error: undefined,
+ });
+
+ if (batchResponse) {
+ const failedFields: Field[] = [];
if (Array.isArray(batchResponse)) {
batchResponse.forEach((f) => {
if (f.fieldName !== undefined) {
- statsMap.set(f.fieldName, f);
+ statsMapTmp.set(f.fieldName, f);
}
});
} else {
@@ -202,23 +234,22 @@ export function useFieldStatsSearchStrategy(
// retry each field in the failed batch individually
failedFields.push(...(batchResponse.fields ?? []));
}
- });
- setFetchState({
- loaded: (statsMap.size / sortedConfigs.length) * 100,
- isRunning: true,
- });
+ setFieldStats(statsMapTmp);
+ setFetchState({
+ loaded: (statsMapTmp.size / pageOfConfigs.length) * 100,
+ isRunning: true,
+ });
- setFieldStats(statsMap);
- if (failedFields.length > 0) {
- statsMap$.next(statsMap);
- fieldsToRetry$.next(failedFields);
+ if (failedFields.length > 0) {
+ statsMap$.next(statsMapTmp);
+ fieldsToRetry$.next(failedFields);
+ }
}
- }
- },
- error: onError,
- complete: onComplete,
- });
+ },
+ error: onError,
+ complete: onComplete,
+ });
// If any of batches failed, retry each of the failed field at least one time individually
retries$.current = combineLatest([
@@ -247,7 +278,7 @@ export function useFieldStatsSearchStrategy(
});
setFieldStats(statsMap);
setFetchState({
- loaded: (statsMap.size / sortedConfigs.length) * 100,
+ loaded: (statsMap.size / pageOfConfigs.length) * 100,
isRunning: true,
});
}
@@ -256,7 +287,15 @@ export function useFieldStatsSearchStrategy(
complete: onComplete,
});
// eslint-disable-next-line react-hooks/exhaustive-deps
- }, [data.search, toasts, fieldStatsParams, initialDataVisualizerListState]);
+ }, [
+ data.search,
+ toasts,
+ fieldStatsParams,
+ dataVisualizerListState.pageSize,
+ dataVisualizerListState.pageIndex,
+ dataVisualizerListState.sortDirection,
+ dataVisualizerListState.sortField,
+ ]);
const cancelFetch = useCallback(() => {
searchSubscription$.current?.unsubscribe();
diff --git a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_overall_stats.ts b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_overall_stats.ts
index 8995a6adc4d46..0ad8ec7037153 100644
--- a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_overall_stats.ts
+++ b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_overall_stats.ts
@@ -6,8 +6,8 @@
*/
import { useCallback, useEffect, useState, useRef, useMemo, useReducer } from 'react';
-import { forkJoin, of, Subscription } from 'rxjs';
-import { switchMap } from 'rxjs/operators';
+import { from, of, Subscription, Observable } from 'rxjs';
+import { mergeMap, last, map, toArray } from 'rxjs/operators';
import { i18n } from '@kbn/i18n';
import type { ToastsStart } from 'kibana/public';
import { chunk } from 'lodash';
@@ -16,6 +16,7 @@ import {
AggregatableFieldOverallStats,
checkAggregatableFieldsExistRequest,
checkNonAggregatableFieldExistsRequest,
+ isAggregatableFieldOverallStats,
processAggregatableFieldsExistResponse,
processNonAggregatableFieldsExistResponse,
} from '../search_strategy/requests/overall_stats';
@@ -36,6 +37,31 @@ import {
processDocumentCountStats,
} from '../search_strategy/requests/get_document_stats';
import { getInitialProgress, getReducer } from '../progress_utils';
+import { MAX_CONCURRENT_REQUESTS } from '../constants/index_data_visualizer_viewer';
+
+/**
+ * Helper function to run forkJoin
+ * with restrictions on how many input observables can be subscribed to concurrently
+ */
+export function rateLimitingForkJoin(
+ observables: Array>,
+ maxConcurrentRequests = MAX_CONCURRENT_REQUESTS
+): Observable {
+ return from(observables).pipe(
+ mergeMap(
+ (observable, index) =>
+ observable.pipe(
+ last(),
+ map((value) => ({ index, value }))
+ ),
+ maxConcurrentRequests
+ ),
+ toArray(),
+ map((indexedObservables) =>
+ indexedObservables.sort((l, r) => l.index - r.index).map((obs) => obs.value)
+ )
+ );
+}
function displayError(toastNotifications: ToastsStart, index: string, err: any) {
if (err.statusCode === 500) {
@@ -116,72 +142,63 @@ export function useOverallStats 0
- ? forkJoin(
- nonAggregatableFields.map((fieldName: string) =>
- data.search
- .search(
- {
- params: checkNonAggregatableFieldExistsRequest(
- index,
- searchQuery,
- fieldName,
- timeFieldName,
- earliest,
- latest,
- runtimeFieldMap
- ),
- },
- searchOptions
- )
- .pipe(
- switchMap((resp) => {
- return of({
- ...resp,
- rawResponse: { ...resp.rawResponse, fieldName },
- } as IKibanaSearchResponse);
- })
- )
- )
- )
- : of(undefined);
+
+ const nonAggregatableFieldsObs = nonAggregatableFields.map((fieldName: string) =>
+ data.search
+ .search(
+ {
+ params: checkNonAggregatableFieldExistsRequest(
+ index,
+ searchQuery,
+ fieldName,
+ timeFieldName,
+ earliest,
+ latest,
+ runtimeFieldMap
+ ),
+ },
+ searchOptions
+ )
+ .pipe(
+ map((resp) => {
+ return {
+ ...resp,
+ rawResponse: { ...resp.rawResponse, fieldName },
+ } as IKibanaSearchResponse;
+ })
+ )
+ );
// Have to divide into smaller requests to avoid 413 payload too large
const aggregatableFieldsChunks = chunk(aggregatableFields, 30);
- const aggregatableOverallStats$ = forkJoin(
- aggregatableFields.length > 0
- ? aggregatableFieldsChunks.map((aggregatableFieldsChunk) =>
- data.search
- .search(
- {
- params: checkAggregatableFieldsExistRequest(
- index,
- searchQuery,
- aggregatableFieldsChunk,
- samplerShardSize,
- timeFieldName,
- earliest,
- latest,
- undefined,
- runtimeFieldMap
- ),
- },
- searchOptions
- )
- .pipe(
- switchMap((resp) => {
- return of({
- ...resp,
- aggregatableFields: aggregatableFieldsChunk,
- } as AggregatableFieldOverallStats);
- })
- )
- )
- : of(undefined)
+ const aggregatableOverallStatsObs = aggregatableFieldsChunks.map((aggregatableFieldsChunk) =>
+ data.search
+ .search(
+ {
+ params: checkAggregatableFieldsExistRequest(
+ index,
+ searchQuery,
+ aggregatableFieldsChunk,
+ samplerShardSize,
+ timeFieldName,
+ earliest,
+ latest,
+ undefined,
+ runtimeFieldMap
+ ),
+ },
+ searchOptions
+ )
+ .pipe(
+ map((resp) => {
+ return {
+ ...resp,
+ aggregatableFields: aggregatableFieldsChunk,
+ } as AggregatableFieldOverallStats;
+ })
+ )
);
-
const documentCountStats$ =
!fieldsToFetch && timeFieldName !== undefined && intervalMs !== undefined && intervalMs > 0
? data.search.search(
@@ -191,28 +208,42 @@ export function useOverallStats {
+
+ const sub = rateLimitingForkJoin<
+ AggregatableFieldOverallStats | IKibanaSearchResponse | undefined
+ >(
+ [documentCountStats$, ...aggregatableOverallStatsObs, ...nonAggregatableFieldsObs],
+ MAX_CONCURRENT_REQUESTS
+ );
+
+ searchSubscription$.current = sub.subscribe({
+ next: (value) => {
+ {
+ const aggregatableOverallStatsResp: AggregatableFieldOverallStats[] = [];
+ const nonAggregatableOverallStatsResp: IKibanaSearchResponse[] = [];
+ const documentCountStatsResp = value[0];
+
+ value.forEach((resp, idx) => {
+ if (!resp) return;
+ if (isAggregatableFieldOverallStats(resp)) {
+ aggregatableOverallStatsResp.push(resp);
+ } else {
+ nonAggregatableOverallStatsResp.push(resp);
+ }
+ });
+
const aggregatableOverallStats = processAggregatableFieldsExistResponse(
aggregatableOverallStatsResp,
aggregatableFields,
samplerShardSize
);
+
const nonAggregatableOverallStats = processNonAggregatableFieldsExistResponse(
nonAggregatableOverallStatsResp,
nonAggregatableFields
);
- return of({
+ setOverallStats({
documentCountStats: processDocumentCountStats(
documentCountStatsResp?.rawResponse,
searchStrategyParams
@@ -221,14 +252,6 @@ export function useOverallStats {
- if (overallStats) {
- setOverallStats(overallStats);
- }
},
error: (error) => {
displayError(toasts, searchStrategyParams.index, extractErrorProperties(error));
diff --git a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/search_strategy/requests/overall_stats.ts b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/search_strategy/requests/overall_stats.ts
index 1e7c99ce25428..a96244ece334a 100644
--- a/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/search_strategy/requests/overall_stats.ts
+++ b/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/search_strategy/requests/overall_stats.ts
@@ -90,6 +90,13 @@ export const checkAggregatableFieldsExistRequest = (
export interface AggregatableFieldOverallStats extends IKibanaSearchResponse {
aggregatableFields: string[];
}
+
+export function isAggregatableFieldOverallStats(
+ arg: unknown
+): arg is AggregatableFieldOverallStats {
+ return isPopulatedObject(arg, ['aggregatableFields']);
+}
+
export const processAggregatableFieldsExistResponse = (
responses: AggregatableFieldOverallStats[] | undefined,
aggregatableFields: string[],
diff --git a/x-pack/plugins/discover_enhanced/kibana.json b/x-pack/plugins/discover_enhanced/kibana.json
index 426da33ae64f1..d1c8242987424 100644
--- a/x-pack/plugins/discover_enhanced/kibana.json
+++ b/x-pack/plugins/discover_enhanced/kibana.json
@@ -7,7 +7,7 @@
"requiredPlugins": ["uiActions", "embeddable", "discover"],
"optionalPlugins": ["share", "usageCollection"],
"configPath": ["xpack", "discoverEnhanced"],
- "requiredBundles": ["kibanaUtils", "data"],
+ "requiredBundles": ["kibanaUtils", "data", "lens"],
"owner": {
"name": "Data Discovery",
"githubTeam": "kibana-data-discovery"
diff --git a/x-pack/plugins/discover_enhanced/public/actions/explore_data/abstract_explore_data_action.ts b/x-pack/plugins/discover_enhanced/public/actions/explore_data/abstract_explore_data_action.ts
index c1c84c040f51e..52b60012f62f2 100644
--- a/x-pack/plugins/discover_enhanced/public/actions/explore_data/abstract_explore_data_action.ts
+++ b/x-pack/plugins/discover_enhanced/public/actions/explore_data/abstract_explore_data_action.ts
@@ -11,6 +11,7 @@ import { ViewMode, IEmbeddable } from '../../../../../../src/plugins/embeddable/
import { StartServicesGetter } from '../../../../../../src/plugins/kibana_utils/public';
import { CoreStart } from '../../../../../../src/core/public';
import { KibanaLocation } from '../../../../../../src/plugins/share/public';
+import { DOC_TYPE as LENS_DOC_TYPE } from '../../../../lens/common/constants';
import * as shared from './shared';
export const ACTION_EXPLORE_DATA = 'ACTION_EXPLORE_DATA';
@@ -41,6 +42,7 @@ export abstract class AbstractExploreDataAction {
if (!embeddable) return false;
+ if (embeddable.type === LENS_DOC_TYPE) return false;
const { core, plugins } = this.params.start();
const { capabilities } = core.application;
diff --git a/x-pack/plugins/discover_enhanced/tsconfig.json b/x-pack/plugins/discover_enhanced/tsconfig.json
index 8ce3e5bf9f63a..631ca8a577cdf 100644
--- a/x-pack/plugins/discover_enhanced/tsconfig.json
+++ b/x-pack/plugins/discover_enhanced/tsconfig.json
@@ -13,6 +13,7 @@
{ "path": "../../../src/plugins/discover/tsconfig.json" },
{ "path": "../../../src/plugins/share/tsconfig.json" },
{ "path": "../../../src/plugins/kibana_utils/tsconfig.json" },
+ { "path": "../lens/tsconfig.json" },
{ "path": "../../../src/plugins/url_forwarding/tsconfig.json" },
{ "path": "../../../src/plugins/usage_collection/tsconfig.json" },
{ "path": "../../../src/plugins/embeddable/tsconfig.json" },
diff --git a/x-pack/plugins/enterprise_search/common/types/indices.ts b/x-pack/plugins/enterprise_search/common/types/indices.ts
index a0be781638fb5..61d61b73b6a45 100644
--- a/x-pack/plugins/enterprise_search/common/types/indices.ts
+++ b/x-pack/plugins/enterprise_search/common/types/indices.ts
@@ -19,5 +19,4 @@ export interface ElasticsearchIndex {
size_in_bytes: string;
};
};
- aliases: string | string[];
}
diff --git a/x-pack/plugins/enterprise_search/public/applications/workplace_search/types.ts b/x-pack/plugins/enterprise_search/public/applications/workplace_search/types.ts
index 971b00b6529ee..19263f057e40f 100644
--- a/x-pack/plugins/enterprise_search/public/applications/workplace_search/types.ts
+++ b/x-pack/plugins/enterprise_search/public/applications/workplace_search/types.ts
@@ -92,6 +92,7 @@ export interface SourceDataItem {
export interface ContentSource {
id: string;
serviceType: string;
+ baseServiceType?: string;
name: string;
}
diff --git a/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.test.tsx b/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.test.tsx
index 73add51b87955..3de514a3e4d71 100644
--- a/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.test.tsx
+++ b/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.test.tsx
@@ -15,7 +15,7 @@ import { EuiButtonTo } from '../../../../../../shared/react_router_helpers';
import { staticCustomSourceData } from '../../../source_data';
-import { SourceIdentifier } from '../../source_identifier';
+import { CustomSourceDeployment } from '../../custom_source_deployment';
import { SaveCustom } from './save_custom';
@@ -43,12 +43,8 @@ describe('SaveCustom', () => {
expect(wrapper.find(EuiButtonTo)).toHaveLength(1);
});
- it('contains a source identifier', () => {
- expect(wrapper.find(SourceIdentifier)).toHaveLength(1);
- });
-
- it('includes a link to generic documentation', () => {
- expect(wrapper.find('[data-test-subj="GenericDocumentationLink"]')).toHaveLength(1);
+ it('includes deployment instructions', () => {
+ expect(wrapper.find(CustomSourceDeployment)).toHaveLength(1);
});
});
@@ -72,14 +68,6 @@ describe('SaveCustom', () => {
wrapper = shallow( );
});
- it('includes a to the github repository', () => {
- expect(wrapper.find('[data-test-subj="GithubRepositoryLink"]')).toHaveLength(1);
- });
-
- it('includes a link to service-type specific documentation', () => {
- expect(wrapper.find('[data-test-subj="PreconfiguredDocumentationLink"]')).toHaveLength(1);
- });
-
it('includes a link to provide feedback', () => {
expect(wrapper.find('[data-test-subj="FeedbackCallout"]')).toHaveLength(1);
});
diff --git a/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.tsx b/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.tsx
index 8d0612f36fc0d..de87d82d8712e 100644
--- a/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.tsx
+++ b/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/content_sources/components/add_source/add_custom_source/save_custom.tsx
@@ -17,9 +17,7 @@ import {
EuiText,
EuiTextAlign,
EuiTitle,
- EuiLink,
EuiPanel,
- EuiHorizontalRule,
EuiCallOut,
} from '@elastic/eui';
import { i18n } from '@kbn/i18n';
@@ -27,10 +25,9 @@ import { FormattedMessage } from '@kbn/i18n-react';
import { EuiButtonTo, EuiLinkTo } from '../../../../../../shared/react_router_helpers';
import { AppLogic } from '../../../../../app_logic';
-import { API_KEY_LABEL } from '../../../../../constants';
-import { SOURCES_PATH, getSourcesPath, API_KEYS_PATH } from '../../../../../routes';
+import { SOURCES_PATH, getSourcesPath } from '../../../../../routes';
-import { SourceIdentifier } from '../../source_identifier';
+import { CustomSourceDeployment } from '../../custom_source_deployment';
import { AddSourceHeader } from '../add_source_header';
import { SAVE_CUSTOM_BODY1 as READY_TO_ACCEPT_REQUESTS_LABEL } from '../constants';
@@ -40,12 +37,7 @@ import { AddCustomSourceLogic } from './add_custom_source_logic';
export const SaveCustom: React.FC = () => {
const { newCustomSource, sourceData } = useValues(AddCustomSourceLogic);
const { isOrganization } = useValues(AppLogic);
- const {
- serviceType,
- configuration: { githubRepository, documentationUrl },
- name,
- categories = [],
- } = sourceData;
+ const { serviceType, name, categories = [] } = sourceData;
return (
<>
@@ -99,77 +91,7 @@ export const SaveCustom: React.FC = () => {
-
-
- {serviceType !== 'custom' && githubRepository ? (
- <>
-
-
-
- ),
- }}
- />
-
-
-
-
- ),
- }}
- />
- >
- ) : (
-
-
-
- ),
- }}
- />
- )}
-
-
- {API_KEY_LABEL}
-
- ),
- }}
- />
-
-
-
-
+