Skip to content

Commit 90d2c92

Browse files
committed
fix spec
1 parent 3bcb509 commit 90d2c92

File tree

4 files changed

+14
-149
lines changed

4 files changed

+14
-149
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 1 addition & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 9 additions & 82 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 2 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/esql/async_query_stop/AsyncQueryStopResponse.ts

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,8 @@
1717
* under the License.
1818
*/
1919

20-
import { EsqlColumns } from '@_types/Binary'
20+
import { EsqlResult } from '@_types/Binary'
2121

2222
export class Response {
23-
body: {
24-
columns?: EsqlColumns
25-
/**
26-
* Indicates whether the query is still running.
27-
* For stopped query results, this will always be false.
28-
*/
29-
is_running: boolean
30-
/**
31-
* Indicates whether the query returned partial result.
32-
* This will be false if the query completed before the stop command was issued.
33-
*/
34-
is_partial: boolean
35-
}
23+
body: EsqlResult
3624
}

0 commit comments

Comments
 (0)