Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 16 additions & 8 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 35 additions & 23 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions specification/esql/_types/EsqlResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { FieldValue, Id, IndexName, NodeId } from '@_types/common'
import { FieldValue, IndexName, NodeId } from '@_types/common'
import { ErrorCause } from '@_types/Errors'
import { integer } from '@_types/Numeric'
import { DurationValue, UnitMillis } from '@_types/Time'
Expand Down Expand Up @@ -67,6 +67,7 @@ export class EsqlClusterDetails {
indices: string
took?: DurationValue<UnitMillis>
_shards?: EsqlShardInfo
failures?: EsqlShardFailure[]
}

export enum EsqlClusterStatus {
Expand All @@ -82,12 +83,11 @@ export class EsqlShardInfo {
successful?: integer
skipped?: integer
failed?: integer
failures?: EsqlShardFailure[]
}

export class EsqlShardFailure {
shard: Id
index: IndexName
shard: integer
index: IndexName | null
node?: NodeId
reason: ErrorCause
}
Loading