Skip to content

Commit

Permalink
making node info path optional (issue #242)
Browse files Browse the repository at this point in the history
  • Loading branch information
l-trotta committed Feb 8, 2024
1 parent 7393ae0 commit c795a05
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions specification/nodes/info/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class NodeInfo {
export class NodeInfoSettings {
cluster: NodeInfoSettingsCluster
node: NodeInfoSettingsNode
path: NodeInfoPath
path?: NodeInfoPath
repositories?: NodeInfoRepositories
discovery?: NodeInfoDiscover
action?: NodeInfoAction
Expand Down Expand Up @@ -155,9 +155,9 @@ export class NodeInfoSettingsNode {
}

export class NodeInfoPath {
logs: string
home: string
repo: string[]
logs?: string
home?: string
repo?: string[]
data?: string[]
}

Expand Down

0 comments on commit c795a05

Please sign in to comment.