Skip to content

Commit fe017f5

Browse files
authored
Make data.search.aggs available on the server. (#74472)
1 parent c34e30e commit fe017f5

File tree

315 files changed

+2712
-831
lines changed

Some content is hidden

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

315 files changed

+2712
-831
lines changed

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.baseformatterspublic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
<b>Signature:</b>
88

99
```typescript
10-
baseFormattersPublic: (import("../../common").FieldFormatInstanceType | typeof DateNanosFormat | typeof DateFormat)[]
10+
baseFormattersPublic: (import("../../common").FieldFormatInstanceType | typeof DateFormat | typeof DateNanosFormat)[]
1111
```

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.search.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ search: {
1414
intervalOptions: ({
1515
display: string;
1616
val: string;
17-
enabled(agg: import("./search/aggs/buckets/bucket_agg_type").IBucketAggConfig): boolean | "" | undefined;
17+
enabled(agg: import("../common").IBucketAggConfig): boolean | "" | undefined;
1818
} | {
1919
display: string;
2020
val: string;
@@ -23,9 +23,9 @@ search: {
2323
InvalidEsIntervalFormatError: typeof InvalidEsIntervalFormatError;
2424
Ipv4Address: typeof Ipv4Address;
2525
isDateHistogramBucketAggConfig: typeof isDateHistogramBucketAggConfig;
26-
isNumberType: (agg: import("./search").AggConfig) => boolean;
27-
isStringType: (agg: import("./search").AggConfig) => boolean;
28-
isType: (...types: string[]) => (agg: import("./search").AggConfig) => boolean;
26+
isNumberType: (agg: import("../common").AggConfig) => boolean;
27+
isStringType: (agg: import("../common").AggConfig) => boolean;
28+
isType: (...types: string[]) => (agg: import("../common").AggConfig) => boolean;
2929
isValidEsInterval: typeof isValidEsInterval;
3030
isValidInterval: typeof isValidInterval;
3131
parentPipelineType: string;
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggConfigOptions](./kibana-plugin-plugins-data-server.aggconfigoptions.md)
4+
5+
## AggConfigOptions type
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export declare type AggConfigOptions = Assign<AggConfigSerialized, {
11+
type: IAggType;
12+
}>;
13+
```
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggGroupLabels](./kibana-plugin-plugins-data-server.agggrouplabels.md)
4+
5+
## AggGroupLabels variable
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
AggGroupLabels: {
11+
buckets: string;
12+
metrics: string;
13+
none: string;
14+
}
15+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggGroupName](./kibana-plugin-plugins-data-server.agggroupname.md)
4+
5+
## AggGroupName type
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export declare type AggGroupName = $Values<typeof AggGroupNames>;
11+
```
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggGroupNames](./kibana-plugin-plugins-data-server.agggroupnames.md)
4+
5+
## AggGroupNames variable
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
AggGroupNames: Readonly<{
11+
Buckets: "buckets";
12+
Metrics: "metrics";
13+
None: "none";
14+
}>
15+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggParam](./kibana-plugin-plugins-data-server.aggparam.md)
4+
5+
## AggParam type
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export declare type AggParam = BaseParamType;
11+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggParamOption](./kibana-plugin-plugins-data-server.aggparamoption.md) &gt; [display](./kibana-plugin-plugins-data-server.aggparamoption.display.md)
4+
5+
## AggParamOption.display property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
display: string;
11+
```
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggParamOption](./kibana-plugin-plugins-data-server.aggparamoption.md) &gt; [enabled](./kibana-plugin-plugins-data-server.aggparamoption.enabled.md)
4+
5+
## AggParamOption.enabled() method
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
enabled?(agg: AggConfig): boolean;
11+
```
12+
13+
## Parameters
14+
15+
| Parameter | Type | Description |
16+
| --- | --- | --- |
17+
| agg | <code>AggConfig</code> | |
18+
19+
<b>Returns:</b>
20+
21+
`boolean`
22+
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) &gt; [AggParamOption](./kibana-plugin-plugins-data-server.aggparamoption.md)
4+
5+
## AggParamOption interface
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
export interface AggParamOption
11+
```
12+
13+
## Properties
14+
15+
| Property | Type | Description |
16+
| --- | --- | --- |
17+
| [display](./kibana-plugin-plugins-data-server.aggparamoption.display.md) | <code>string</code> | |
18+
| [val](./kibana-plugin-plugins-data-server.aggparamoption.val.md) | <code>string</code> | |
19+
20+
## Methods
21+
22+
| Method | Description |
23+
| --- | --- |
24+
| [enabled(agg)](./kibana-plugin-plugins-data-server.aggparamoption.enabled.md) | |
25+

0 commit comments

Comments
 (0)