Skip to content

Commit c795a05

Browse files
committed
making node info path optional (issue #242)
1 parent 7393ae0 commit c795a05

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

output/openapi/elasticsearch-serverless-openapi.json

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

specification/nodes/info/types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class NodeInfo {
6868
export class NodeInfoSettings {
6969
cluster: NodeInfoSettingsCluster
7070
node: NodeInfoSettingsNode
71-
path: NodeInfoPath
71+
path?: NodeInfoPath
7272
repositories?: NodeInfoRepositories
7373
discovery?: NodeInfoDiscover
7474
action?: NodeInfoAction
@@ -155,9 +155,9 @@ export class NodeInfoSettingsNode {
155155
}
156156

157157
export class NodeInfoPath {
158-
logs: string
159-
home: string
160-
repo: string[]
158+
logs?: string
159+
home?: string
160+
repo?: string[]
161161
data?: string[]
162162
}
163163

0 commit comments

Comments
 (0)