From ae863e389df79320149b5c613a7d99a4573186bd Mon Sep 17 00:00:00 2001 From: YonatanKiron Date: Wed, 4 Sep 2019 03:25:47 +0300 Subject: [PATCH] Add bytes parameter to cat shards (#38079) As described in Elasticsearch documentation - https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-shards.html#cat-shards-query-params --- types/elasticsearch/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/elasticsearch/index.d.ts b/types/elasticsearch/index.d.ts index b9318c6e60..9560a6e7a5 100644 --- a/types/elasticsearch/index.d.ts +++ b/types/elasticsearch/index.d.ts @@ -9,6 +9,7 @@ // Simon Schick // Paul Brabban // Budi Irawan +// Yonatan Kiron // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 @@ -899,6 +900,7 @@ export interface CatSegmentsParams extends GenericParams { export interface CatShardsParams extends CatCommonParams { index?: NameList; + bytes?: CatBytes; } export interface CatSnapshotsParams extends GenericParams {