Skip to content

Commit 06224c1

Browse files
Fix 'runtime' in dynamic template (#3847) (#3850)
(cherry picked from commit 86bbcf8) Co-authored-by: Fabien Baligand <[email protected]>
1 parent 0030236 commit 06224c1

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
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/openapi/elasticsearch-serverless-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-serverless.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/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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/mapping/dynamic-template.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@
1818
*/
1919

2020
import { Property } from './Property'
21+
import { RuntimeField } from './RuntimeFields'
2122

2223
/**
2324
* @variants container
2425
*/
2526
export class DynamicTemplate {
2627
mapping?: Property
27-
runtime?: Property
28+
runtime?: RuntimeField
2829
/** @variant container_property */
2930
match?: string | string[]
3031
/** @variant container_property */

0 commit comments

Comments
 (0)