Skip to content

Commit 4699bd3

Browse files
authored
Fix self-referential type (#5249)
* Fix self-referential type While allowed in TypeScript, this was not intended and causes stack overflows in generators. * Run make contrib
1 parent 52fc58a commit 4699bd3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

output/openapi/elasticsearch-openapi.json

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

output/schema/schema.json

Lines changed: 1 addition & 1 deletion
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/cat/_types/CatBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2476,7 +2476,7 @@ export type CatMasterColumns = CatMasterColumn | CatMasterColumn[]
24762476
export type CatNodeattrsColumns = CatNodeattrsColumn | CatNodeattrsColumn[]
24772477
export type CatPendingTasksColumns =
24782478
| CatPendingTasksColumn
2479-
| CatPendingTasksColumns[]
2479+
| CatPendingTasksColumn[]
24802480
export type CatPluginsColumns = CatPluginsColumn | CatPluginsColumn[]
24812481
export type CatTasksColumns = CatTasksColumn | CatTasksColumn[]
24822482
export type CatTemplatesColumns = CatTemplatesColumn | CatTemplatesColumn[]

0 commit comments

Comments
 (0)