Skip to content

Commit fea1bf8

Browse files
fix: type for AsyncQueryResponse's body (#4257)
1 parent 6d6d2a1 commit fea1bf8

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

output/openapi/elasticsearch-openapi.json

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/esql/async_query/AsyncQueryResponse.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
* under the License.
1818
*/
1919

20-
import { EsqlResult } from '@esql/_types/EsqlResult'
20+
import { AsyncEsqlResult } from '@esql/_types/EsqlResult'
2121

2222
export class Response {
2323
/** @codegen_name data */
24-
body: EsqlResult
24+
body: AsyncEsqlResult
2525
}

0 commit comments

Comments
 (0)