Skip to content

Commit 311a18a

Browse files
authored
Fix indices.get_mapping API (#3977)
1 parent 8e66bce commit 311a18a

File tree

7 files changed

+50
-11
lines changed

7 files changed

+50
-11
lines changed

output/openapi/elasticsearch-openapi.json

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

+19-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

+19-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/mapping/RuntimeFields.ts

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export enum RuntimeFieldType {
6565
date,
6666
double,
6767
geo_point,
68+
geo_shape,
6869
ip,
6970
keyword,
7071
long,

specification/_types/mapping/geo.ts

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export class GeoShapeProperty extends DocValuesPropertyBase {
4848
coerce?: boolean
4949
ignore_malformed?: boolean
5050
ignore_z_value?: boolean
51+
index?: boolean
5152
orientation?: GeoOrientation
5253
strategy?: GeoStrategy
5354
type: 'geo_shape'

0 commit comments

Comments
 (0)