From 684bc299271814445b5f476e0e36bf06a6fbb085 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Fri, 12 May 2023 15:12:50 -0500 Subject: [PATCH] [Backport 8.7] Fix estypesWithBody definition (#1784) (#1883) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Grégoire Chauvet --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 2fbbb3652..89be0131c 100644 --- a/index.d.ts +++ b/index.d.ts @@ -22,6 +22,6 @@ import SniffingTransport from './lib/sniffingTransport' export * from '@elastic/transport' export * as estypes from './lib/api/types' -export * as estypesWithBody from './lib/api/types' +export * as estypesWithBody from './lib/api/typesWithBodyKey' export { Client, SniffingTransport } export type { ClientOptions, NodeOptions } from './lib/client'