From 7bcf73463a883f30996a6799d435a5c97a9b5583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Chauvet?= Date: Wed, 10 May 2023 21:06:47 +0200 Subject: [PATCH] Fix estypesWithBody definition (#1784) --- 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'