mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
# Backport This will backport the following commits from `main` to `8.18`: - [Add autocomplete support for all field types (#216765)](https://github.com/elastic/kibana/pull/216765) <!--- Backport version: 9.6.6 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sorenlouv/backport) <!--BACKPORT [{"author":{"name":"Ioana Tagirta","email":"ioanatia@users.noreply.github.com"},"sourceCommit":{"committedDate":"2025-04-02T17:56:01Z","message":"Add autocomplete support for all field types (#216765)","sha":"00e776f1666a335c559c39fe98c22af98a672b5f","branchLabelMapping":{"^v9.1.0$":"main","^v8.19.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","backport:prev-minor","backport:prev-major","v9.1.0"],"title":"Add autocomplete support for all field types","number":216765,"url":"https://github.com/elastic/kibana/pull/216765","mergeCommit":{"message":"Add autocomplete support for all field types (#216765)","sha":"00e776f1666a335c559c39fe98c22af98a672b5f"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.1.0","branchLabelMappingKey":"^v9.1.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/216765","number":216765,"mergeCommit":{"message":"Add autocomplete support for all field types (#216765)","sha":"00e776f1666a335c559c39fe98c22af98a672b5f"}}]}] BACKPORT--> Co-authored-by: Ioana Tagirta <ioanatia@users.noreply.github.com>
This commit is contained in:
parent
5ae0c07bee
commit
40e03461f0
1 changed files with 30 additions and 15 deletions
|
@ -47,24 +47,39 @@ export const mappings = (specService: SpecDefinitionsService) => {
|
|||
'*': {
|
||||
type: {
|
||||
__one_of: [
|
||||
'text',
|
||||
'keyword',
|
||||
'float',
|
||||
'half_float',
|
||||
'scaled_float',
|
||||
'double',
|
||||
'byte',
|
||||
'short',
|
||||
'integer',
|
||||
'long',
|
||||
'date',
|
||||
'boolean',
|
||||
'alias',
|
||||
'binary',
|
||||
'object',
|
||||
'nested',
|
||||
'boolean',
|
||||
'completion',
|
||||
'constant_keyword',
|
||||
'date',
|
||||
'date_nanos',
|
||||
'dense_vector',
|
||||
'flattened',
|
||||
'geo_point',
|
||||
'geo_shape',
|
||||
'dense_vector',
|
||||
'histogram',
|
||||
'ip',
|
||||
'join',
|
||||
'keyword',
|
||||
'match_only_text',
|
||||
'nested',
|
||||
'numeric',
|
||||
'object',
|
||||
'passthrough',
|
||||
'percolator',
|
||||
'point',
|
||||
'range',
|
||||
'rank_feature',
|
||||
'rank_features',
|
||||
'search_as_you_type',
|
||||
'semantic_text',
|
||||
'shape',
|
||||
'sparse_vector',
|
||||
'text',
|
||||
'token_count',
|
||||
'version',
|
||||
'wildcard',
|
||||
],
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue