Skip to content

Commit 33bc1c0

Browse files
committed
Switch from string[] to NodeIds
1 parent 431bc7c commit 33bc1c0

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 1 addition & 4 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: 4 additions & 7 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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/tasks/list/ListTasksRequest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import { GroupBy } from '@tasks/_types/GroupBy'
2121
import { RequestBase } from '@_types/Base'
22-
import { Id } from '@_types/common'
22+
import { Id, NodeIds } from '@_types/common'
2323
import { Duration } from '@_types/Time'
2424

2525
/**
@@ -48,7 +48,7 @@ export interface Request extends RequestBase {
4848
/**
4949
* Comma-separated list of node IDs or names used to limit returned information.
5050
*/
51-
nodes?: string[]
51+
nodes?: NodeIds
5252
/**
5353
* Parent task ID used to limit returned information. To return all tasks, omit this parameter or use a value of `-1`.
5454
*/

0 commit comments

Comments
 (0)