Skip to content

Commit 3a0d7df

Browse files
committed
adding missing properties to GeoPoint (issue 394)
1 parent e5903ff commit 3a0d7df

File tree

4 files changed

+56
-7
lines changed

4 files changed

+56
-7
lines changed

output/openapi/elasticsearch-serverless-openapi.json

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

specification/_types/mapping/geo.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@
1717
* under the License.
1818
*/
1919

20-
import { DocValuesPropertyBase } from './core'
20+
import { DocValuesPropertyBase, OnScriptError } from './core'
2121
import { GeoLocation } from '@_types/Geo'
22+
import { Script } from '@_types/Scripting'
2223

2324
export class GeoPointProperty extends DocValuesPropertyBase {
2425
ignore_malformed?: boolean
2526
ignore_z_value?: boolean
2627
null_value?: GeoLocation
28+
index?: boolean
29+
on_script_error?: OnScriptError
30+
script?: Script
2731
type: 'geo_point'
2832
}
2933

0 commit comments

Comments
 (0)