gitextract_b_w37aut/ ├── .github/ │ └── workflows/ │ ├── publish.yaml │ └── runTests.yaml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierrc.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build/ │ └── restSpecIndex.js ├── grammar/ │ ├── es.configuration.json │ └── es.tmLanguage ├── media/ │ ├── jquery.contextMenu.css │ ├── jquery.contextMenu.js │ ├── json-formatter.js │ ├── result.tmpl │ └── results.css ├── package.json ├── src/ │ ├── ElasticCodeLensProvider.ts │ ├── ElasticCompletionItemProvider.ts │ ├── ElasticContentProvider.ts │ ├── ElasticDecoration.ts │ ├── ElasticMatch.ts │ ├── ElasticMatches.ts │ ├── axiosInstance.ts │ ├── extension.ts │ ├── helpers.ts │ ├── jsonPanel.ts │ └── rest-spec/ │ ├── index.ts │ ├── json.d.ts │ ├── v2_4_6/ │ │ ├── bulk.json │ │ ├── cat.aliases.json │ │ ├── cat.allocation.json │ │ ├── cat.count.json │ │ ├── cat.fielddata.json │ │ ├── cat.health.json │ │ ├── cat.help.json │ │ ├── cat.indices.json │ │ ├── cat.master.json │ │ ├── cat.nodeattrs.json │ │ ├── cat.nodes.json │ │ ├── cat.pending_tasks.json │ │ ├── cat.plugins.json │ │ ├── cat.recovery.json │ │ ├── cat.repositories.json │ │ ├── cat.segments.json │ │ ├── cat.shards.json │ │ ├── cat.snapshots.json │ │ ├── cat.thread_pool.json │ │ ├── clear_scroll.json │ │ ├── cluster.get_settings.json │ │ ├── cluster.health.json │ │ ├── cluster.pending_tasks.json │ │ ├── cluster.put_settings.json │ │ ├── cluster.reroute.json │ │ ├── cluster.state.json │ │ ├── cluster.stats.json │ │ ├── count.json │ │ ├── count_percolate.json │ │ ├── delete.json │ │ ├── delete_script.json │ │ ├── delete_template.json │ │ ├── exists.json │ │ ├── explain.json │ │ ├── field_stats.json │ │ ├── get.json │ │ ├── get_script.json │ │ ├── get_source.json │ │ ├── get_template.json │ │ ├── index.json │ │ ├── index.ts │ │ ├── indices.analyze.json │ │ ├── indices.clear_cache.json │ │ ├── indices.close.json │ │ ├── indices.create.json │ │ ├── indices.delete.json │ │ ├── indices.delete_alias.json │ │ ├── indices.delete_template.json │ │ ├── indices.delete_warmer.json │ │ ├── indices.exists.json │ │ ├── indices.exists_alias.json │ │ ├── indices.exists_template.json │ │ ├── indices.exists_type.json │ │ ├── indices.flush.json │ │ ├── indices.flush_synced.json │ │ ├── indices.forcemerge.json │ │ ├── indices.get.json │ │ ├── indices.get_alias.json │ │ ├── indices.get_aliases.json │ │ ├── indices.get_field_mapping.json │ │ ├── indices.get_mapping.json │ │ ├── indices.get_settings.json │ │ ├── indices.get_template.json │ │ ├── indices.get_upgrade.json │ │ ├── indices.get_warmer.json │ │ ├── indices.open.json │ │ ├── indices.optimize.json │ │ ├── indices.put_alias.json │ │ ├── indices.put_mapping.json │ │ ├── indices.put_settings.json │ │ ├── indices.put_template.json │ │ ├── indices.put_warmer.json │ │ ├── indices.recovery.json │ │ ├── indices.refresh.json │ │ ├── indices.segments.json │ │ ├── indices.shard_stores.json │ │ ├── indices.stats.json │ │ ├── indices.update_aliases.json │ │ ├── indices.upgrade.json │ │ ├── indices.validate_query.json │ │ ├── info.json │ │ ├── mget.json │ │ ├── mpercolate.json │ │ ├── msearch.json │ │ ├── mtermvectors.json │ │ ├── nodes.hot_threads.json │ │ ├── nodes.info.json │ │ ├── nodes.stats.json │ │ ├── percolate.json │ │ ├── ping.json │ │ ├── put_script.json │ │ ├── put_template.json │ │ ├── reindex.json │ │ ├── reindex_rethrottle.json │ │ ├── render_search_template.json │ │ ├── scroll.json │ │ ├── search.json │ │ ├── search_exists.json │ │ ├── search_shards.json │ │ ├── search_template.json │ │ ├── snapshot.create.json │ │ ├── snapshot.create_repository.json │ │ ├── snapshot.delete.json │ │ ├── snapshot.delete_repository.json │ │ ├── snapshot.get.json │ │ ├── snapshot.get_repository.json │ │ ├── snapshot.restore.json │ │ ├── snapshot.status.json │ │ ├── snapshot.verify_repository.json │ │ ├── suggest.json │ │ ├── tasks.cancel.json │ │ ├── tasks.list.json │ │ ├── termvectors.json │ │ ├── update.json │ │ └── update_by_query.json │ ├── v5_6_4/ │ │ ├── _common.json │ │ ├── bulk.json │ │ ├── cat.aliases.json │ │ ├── cat.allocation.json │ │ ├── cat.count.json │ │ ├── cat.fielddata.json │ │ ├── cat.health.json │ │ ├── cat.help.json │ │ ├── cat.indices.json │ │ ├── cat.master.json │ │ ├── cat.nodeattrs.json │ │ ├── cat.nodes.json │ │ ├── cat.pending_tasks.json │ │ ├── cat.plugins.json │ │ ├── cat.recovery.json │ │ ├── cat.repositories.json │ │ ├── cat.segments.json │ │ ├── cat.shards.json │ │ ├── cat.snapshots.json │ │ ├── cat.tasks.json │ │ ├── cat.templates.json │ │ ├── cat.thread_pool.json │ │ ├── clear_scroll.json │ │ ├── cluster.allocation_explain.json │ │ ├── cluster.get_settings.json │ │ ├── cluster.health.json │ │ ├── cluster.pending_tasks.json │ │ ├── cluster.put_settings.json │ │ ├── cluster.reroute.json │ │ ├── cluster.state.json │ │ ├── cluster.stats.json │ │ ├── count.json │ │ ├── count_percolate.json │ │ ├── create.json │ │ ├── delete.json │ │ ├── delete_by_query.json │ │ ├── delete_script.json │ │ ├── delete_template.json │ │ ├── exists.json │ │ ├── exists_source.json │ │ ├── explain.json │ │ ├── field_caps.json │ │ ├── field_stats.json │ │ ├── get.json │ │ ├── get_script.json │ │ ├── get_source.json │ │ ├── get_template.json │ │ ├── index.json │ │ ├── index.ts │ │ ├── indices.analyze.json │ │ ├── indices.clear_cache.json │ │ ├── indices.close.json │ │ ├── indices.create.json │ │ ├── indices.delete.json │ │ ├── indices.delete_alias.json │ │ ├── indices.delete_template.json │ │ ├── indices.exists.json │ │ ├── indices.exists_alias.json │ │ ├── indices.exists_template.json │ │ ├── indices.exists_type.json │ │ ├── indices.flush.json │ │ ├── indices.flush_synced.json │ │ ├── indices.forcemerge.json │ │ ├── indices.get.json │ │ ├── indices.get_alias.json │ │ ├── indices.get_field_mapping.json │ │ ├── indices.get_mapping.json │ │ ├── indices.get_settings.json │ │ ├── indices.get_template.json │ │ ├── indices.get_upgrade.json │ │ ├── indices.open.json │ │ ├── indices.put_alias.json │ │ ├── indices.put_mapping.json │ │ ├── indices.put_settings.json │ │ ├── indices.put_template.json │ │ ├── indices.recovery.json │ │ ├── indices.refresh.json │ │ ├── indices.rollover.json │ │ ├── indices.segments.json │ │ ├── indices.shard_stores.json │ │ ├── indices.shrink.json │ │ ├── indices.stats.json │ │ ├── indices.update_aliases.json │ │ ├── indices.upgrade.json │ │ ├── indices.validate_query.json │ │ ├── info.json │ │ ├── ingest.delete_pipeline.json │ │ ├── ingest.get_pipeline.json │ │ ├── ingest.processor.grok.json │ │ ├── ingest.put_pipeline.json │ │ ├── ingest.simulate.json │ │ ├── mget.json │ │ ├── mpercolate.json │ │ ├── msearch.json │ │ ├── msearch_template.json │ │ ├── mtermvectors.json │ │ ├── nodes.hot_threads.json │ │ ├── nodes.info.json │ │ ├── nodes.stats.json │ │ ├── percolate.json │ │ ├── ping.json │ │ ├── put_script.json │ │ ├── put_template.json │ │ ├── reindex.json │ │ ├── reindex_rethrottle.json │ │ ├── remote.info.json │ │ ├── render_search_template.json │ │ ├── scroll.json │ │ ├── search.json │ │ ├── search_shards.json │ │ ├── search_template.json │ │ ├── snapshot.create.json │ │ ├── snapshot.create_repository.json │ │ ├── snapshot.delete.json │ │ ├── snapshot.delete_repository.json │ │ ├── snapshot.get.json │ │ ├── snapshot.get_repository.json │ │ ├── snapshot.restore.json │ │ ├── snapshot.status.json │ │ ├── snapshot.verify_repository.json │ │ ├── suggest.json │ │ ├── tasks.cancel.json │ │ ├── tasks.get.json │ │ ├── tasks.list.json │ │ ├── termvectors.json │ │ ├── update.json │ │ └── update_by_query.json │ └── v6_0_0/ │ ├── _common.json │ ├── bulk.json │ ├── cat.aliases.json │ ├── cat.allocation.json │ ├── cat.count.json │ ├── cat.fielddata.json │ ├── cat.health.json │ ├── cat.help.json │ ├── cat.indices.json │ ├── cat.master.json │ ├── cat.nodeattrs.json │ ├── cat.nodes.json │ ├── cat.pending_tasks.json │ ├── cat.plugins.json │ ├── cat.recovery.json │ ├── cat.repositories.json │ ├── cat.segments.json │ ├── cat.shards.json │ ├── cat.snapshots.json │ ├── cat.tasks.json │ ├── cat.templates.json │ ├── cat.thread_pool.json │ ├── clear_scroll.json │ ├── cluster.allocation_explain.json │ ├── cluster.get_settings.json │ ├── cluster.health.json │ ├── cluster.pending_tasks.json │ ├── cluster.put_settings.json │ ├── cluster.reroute.json │ ├── cluster.state.json │ ├── cluster.stats.json │ ├── count.json │ ├── create.json │ ├── delete.json │ ├── delete_by_query.json │ ├── delete_script.json │ ├── exists.json │ ├── exists_source.json │ ├── explain.json │ ├── field_caps.json │ ├── get.json │ ├── get_script.json │ ├── get_source.json │ ├── index.json │ ├── index.ts │ ├── indices.analyze.json │ ├── indices.clear_cache.json │ ├── indices.close.json │ ├── indices.create.json │ ├── indices.delete.json │ ├── indices.delete_alias.json │ ├── indices.delete_template.json │ ├── indices.exists.json │ ├── indices.exists_alias.json │ ├── indices.exists_template.json │ ├── indices.exists_type.json │ ├── indices.flush.json │ ├── indices.flush_synced.json │ ├── indices.forcemerge.json │ ├── indices.get.json │ ├── indices.get_alias.json │ ├── indices.get_field_mapping.json │ ├── indices.get_mapping.json │ ├── indices.get_settings.json │ ├── indices.get_template.json │ ├── indices.get_upgrade.json │ ├── indices.open.json │ ├── indices.put_alias.json │ ├── indices.put_mapping.json │ ├── indices.put_settings.json │ ├── indices.put_template.json │ ├── indices.recovery.json │ ├── indices.refresh.json │ ├── indices.rollover.json │ ├── indices.segments.json │ ├── indices.shard_stores.json │ ├── indices.shrink.json │ ├── indices.stats.json │ ├── indices.update_aliases.json │ ├── indices.upgrade.json │ ├── indices.validate_query.json │ ├── info.json │ ├── ingest.delete_pipeline.json │ ├── ingest.get_pipeline.json │ ├── ingest.processor.grok.json │ ├── ingest.put_pipeline.json │ ├── ingest.simulate.json │ ├── mget.json │ ├── msearch.json │ ├── msearch_template.json │ ├── mtermvectors.json │ ├── nodes.hot_threads.json │ ├── nodes.info.json │ ├── nodes.stats.json │ ├── nodes.usage.json │ ├── ping.json │ ├── put_script.json │ ├── reindex.json │ ├── reindex_rethrottle.json │ ├── remote.info.json │ ├── render_search_template.json │ ├── scroll.json │ ├── search.json │ ├── search_shards.json │ ├── search_template.json │ ├── snapshot.create.json │ ├── snapshot.create_repository.json │ ├── snapshot.delete.json │ ├── snapshot.delete_repository.json │ ├── snapshot.get.json │ ├── snapshot.get_repository.json │ ├── snapshot.restore.json │ ├── snapshot.status.json │ ├── snapshot.verify_repository.json │ ├── tasks.cancel.json │ ├── tasks.get.json │ ├── tasks.list.json │ ├── termvectors.json │ ├── update.json │ └── update_by_query.json ├── tsconfig.json ├── tslint-imports.json └── webpack.config.js