Skip to content

Commit

Permalink
[ES body removal] @elastic/logstash (elastic#204866)
Browse files Browse the repository at this point in the history
## Summary

Attempt to remove the deprecated `body` in the ES client.
  • Loading branch information
afharo authored Dec 19, 2024
1 parent 49f7a8d commit f881df1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';
import { Cluster } from './cluster';

describe('cluster', () => {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/logstash/server/models/cluster/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey';
import type * as estypes from '@elastic/elasticsearch/lib/api/types';

/**
* This model deals with a cluster object from ES and converts it to Kibana downstream
Expand Down

0 comments on commit f881df1

Please sign in to comment.