├── .backportrc.json ├── .ci ├── run-tests └── test-matrix.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .node-version ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower_components ├── angular-mocks │ ├── .bower.json │ ├── README.md │ ├── angular-mocks.js │ └── bower.json └── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ └── bower.json ├── docs ├── README.asciidoc ├── _descriptions │ ├── bulk.asciidoc │ ├── clearScroll.asciidoc │ ├── cluster.getSettings.asciidoc │ ├── cluster.health.asciidoc │ ├── cluster.nodeHotThreads.asciidoc │ ├── cluster.nodeInfo.asciidoc │ ├── cluster.nodeShutdown.asciidoc │ ├── cluster.nodeStats.asciidoc │ ├── cluster.putSettings.asciidoc │ ├── cluster.reroute.asciidoc │ ├── cluster.state.asciidoc │ ├── count.asciidoc │ ├── create.asciidoc │ ├── delete.asciidoc │ ├── deleteByQuery.asciidoc │ ├── exists.asciidoc │ ├── explain.asciidoc │ ├── get.asciidoc │ ├── getSource.asciidoc │ ├── index.asciidoc │ ├── indices.analyze.asciidoc │ ├── indices.clearCache.asciidoc │ ├── indices.close.asciidoc │ ├── indices.create.asciidoc │ ├── indices.delete.asciidoc │ ├── indices.deleteAlias.asciidoc │ ├── indices.deleteMapping.asciidoc │ ├── indices.deleteTemplate.asciidoc │ ├── indices.deleteWarmer.asciidoc │ ├── indices.exists.asciidoc │ ├── indices.existsAlias.asciidoc │ ├── indices.existsType.asciidoc │ ├── indices.flush.asciidoc │ ├── indices.getAlias.asciidoc │ ├── indices.getAliases.asciidoc │ ├── indices.getFieldMapping.asciidoc │ ├── indices.getMapping.asciidoc │ ├── indices.getSettings.asciidoc │ ├── indices.getTemplate.asciidoc │ ├── indices.getWarmer.asciidoc │ ├── indices.open.asciidoc │ ├── indices.optimize.asciidoc │ ├── indices.putAlias.asciidoc │ ├── indices.putMapping.asciidoc │ ├── indices.putSettings.asciidoc │ ├── indices.putTemplate.asciidoc │ ├── indices.putWarmer.asciidoc │ ├── indices.refresh.asciidoc │ ├── indices.segments.asciidoc │ ├── indices.snapshotIndex.asciidoc │ ├── indices.stats.asciidoc │ ├── indices.status.asciidoc │ ├── indices.updateAliases.asciidoc │ ├── indices.validateQuery.asciidoc │ ├── info.asciidoc │ ├── mget.asciidoc │ ├── mlt.asciidoc │ ├── msearch.asciidoc │ ├── percolate.asciidoc │ ├── scroll.asciidoc │ ├── search.asciidoc │ ├── search_0.90.asciidoc │ ├── search_1.x.asciidoc │ ├── search_2.x.asciidoc │ ├── suggest.asciidoc │ └── update.asciidoc ├── _examples │ ├── bulk.asciidoc │ ├── cluster.nodeHotThreads.asciidoc │ ├── cluster.nodeInfo.asciidoc │ ├── count.asciidoc │ ├── create.asciidoc │ ├── delete.asciidoc │ ├── deleteByQuery.asciidoc │ ├── exists.asciidoc │ ├── explain.asciidoc │ ├── get.asciidoc │ ├── index.asciidoc │ ├── indices.updateAliases.asciidoc │ ├── mget.asciidoc │ ├── mlt.asciidoc │ ├── msearch.asciidoc │ ├── percolate.asciidoc │ ├── scroll.asciidoc │ ├── scroll_<5.0.asciidoc │ ├── search.asciidoc │ ├── suggest.asciidoc │ └── update.asciidoc ├── about.asciidoc ├── api_conventions.asciidoc ├── api_methods.asciidoc ├── api_methods_5_6.asciidoc ├── api_methods_6_8.asciidoc ├── api_methods_7_0.asciidoc ├── api_methods_7_1.asciidoc ├── api_methods_7_2.asciidoc ├── api_methods_7_3.asciidoc ├── api_methods_7_4.asciidoc ├── api_methods_7_5.asciidoc ├── api_param_types.asciidoc ├── browser_builds.asciidoc ├── changelog.asciidoc ├── configuration.asciidoc ├── development.asciidoc ├── errors.asciidoc ├── extending_core_components.asciidoc ├── extensions.asciidoc ├── host.asciidoc ├── index.asciidoc ├── logging.asciidoc ├── page_header.html ├── quick_start.asciidoc ├── ssl_authentication.asciidoc └── transport.asciidoc ├── grunt ├── browser_clients.js ├── config │ ├── clean.js │ ├── compress.js │ ├── concat.js │ ├── copy.js │ ├── run.js │ ├── uglify.js │ └── webpack.js ├── tasks.js └── utils.js ├── package.json ├── scripts ├── Version.js ├── _spawn.js ├── eslint.js ├── generate │ ├── api_index.js │ ├── configuration_docs.js │ ├── doc_index.js │ ├── index.js │ ├── js_api.js │ ├── overrides.js │ └── templates │ │ ├── api_file.tmpl │ │ ├── api_index.tmpl │ │ ├── api_index_browser.tmpl │ │ ├── api_methods.tmpl │ │ ├── client_action.tmpl │ │ ├── client_action_proxy.tmpl │ │ ├── configuration_docs.tmpl │ │ ├── docs_index.tmpl │ │ └── index.js ├── mocha.js └── release │ └── bower.js ├── src ├── elasticsearch.angular.js ├── elasticsearch.jquery.js ├── elasticsearch.js └── lib │ ├── apis │ ├── 5_6.js │ ├── 6_8.js │ ├── 7_0.js │ ├── 7_1.js │ ├── 7_2.js │ ├── 7_3.js │ ├── 7_4.js │ ├── 7_5.js │ ├── 7_6.js │ ├── 7_7.js │ ├── 7_x.js │ ├── browser_index.js │ ├── index.js │ └── master.js │ ├── client.js │ ├── client_action.js │ ├── connection.js │ ├── connection_pool.js │ ├── connectors │ ├── angular.js │ ├── browser_index.js │ ├── http.js │ ├── index.js │ ├── jquery.js │ └── xhr.js │ ├── errors.js │ ├── host.js │ ├── log.js │ ├── logger.js │ ├── loggers │ ├── browser_index.js │ ├── console.js │ ├── file.js │ ├── index.js │ ├── stdio.js │ ├── stream.js │ └── tracer.js │ ├── nodes_to_host.js │ ├── selectors │ ├── index.js │ ├── random.js │ └── round_robin.js │ ├── serializers │ ├── angular.js │ ├── index.js │ └── json.js │ ├── transport.js │ ├── transport │ ├── find_common_protocol.js │ └── sniff_on_connection_fault.js │ └── utils.js ├── test ├── .eslintrc.js ├── fixtures │ ├── keepalive.js │ ├── keepalive_server.js │ ├── large_response.json │ ├── short_node_list.0.90.json │ ├── short_node_list.1.0.json │ ├── short_node_list.2.0.json │ └── short_node_list.5.0.json ├── mocks │ ├── browser_http.js │ ├── browser_server.js │ ├── incomming_message.js │ ├── request.js │ ├── server.js │ └── writable_stream.js ├── unit │ ├── browser_builds │ │ ├── angular.js │ │ ├── generic.js │ │ └── jquery.js │ ├── buffer_flush_tests.js │ ├── coverage.js │ ├── generic_logger_tests.js │ ├── index.js │ └── specs │ │ ├── abstract_logger.js │ │ ├── client.js │ │ ├── client_action.js │ │ ├── connection_abstract.js │ │ ├── connection_pool.js │ │ ├── console_logger.js │ │ ├── errors.js │ │ ├── file_logger.js │ │ ├── host.js │ │ ├── http_connector.js │ │ ├── json_serializer.js │ │ ├── log.js │ │ ├── nodes_to_host_callback.js │ │ ├── random_selector.js │ │ ├── round_robin_selector.js │ │ ├── stdio_logger.js │ │ ├── stream_logger.js │ │ ├── tracer_logger.js │ │ ├── transport.js │ │ ├── transport_with_server.js │ │ └── utils.js └── utils │ ├── auto_release_stub.js │ └── expect_sub_object.js └── webpack_config ├── angular.js ├── browser.js ├── jquery.js └── lib.js /.backportrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.backportrc.json -------------------------------------------------------------------------------- /.ci/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.ci/run-tests -------------------------------------------------------------------------------- /.ci/test-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.ci/test-matrix.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/README.md -------------------------------------------------------------------------------- /bower_components/angular-mocks/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular-mocks/.bower.json -------------------------------------------------------------------------------- /bower_components/angular-mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular-mocks/README.md -------------------------------------------------------------------------------- /bower_components/angular-mocks/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular-mocks/angular-mocks.js -------------------------------------------------------------------------------- /bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular-mocks/bower.json -------------------------------------------------------------------------------- /bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/README.md -------------------------------------------------------------------------------- /bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/angular.js -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/bower_components/angular/bower.json -------------------------------------------------------------------------------- /docs/README.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/README.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/bulk.asciidoc: -------------------------------------------------------------------------------- 1 | Perform many index/delete operations in a single API call. -------------------------------------------------------------------------------- /docs/_descriptions/clearScroll.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/clearScroll.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.getSettings.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.getSettings.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.health.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.health.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.nodeHotThreads.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.nodeHotThreads.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.nodeInfo.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.nodeInfo.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.nodeShutdown.asciidoc: -------------------------------------------------------------------------------- 1 | Shutdown one or more (or all) nodes in the cluster. -------------------------------------------------------------------------------- /docs/_descriptions/cluster.nodeStats.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.nodeStats.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.putSettings.asciidoc: -------------------------------------------------------------------------------- 1 | Update cluster wide specific settings. -------------------------------------------------------------------------------- /docs/_descriptions/cluster.reroute.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.reroute.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/cluster.state.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/cluster.state.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/count.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/count.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/create.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/create.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/delete.asciidoc: -------------------------------------------------------------------------------- 1 | Delete a typed JSON document from a specific index based on its id. -------------------------------------------------------------------------------- /docs/_descriptions/deleteByQuery.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/deleteByQuery.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/exists.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/exists.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/explain.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/explain.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/get.asciidoc: -------------------------------------------------------------------------------- 1 | Get a typed JSON document from the index based on its id. -------------------------------------------------------------------------------- /docs/_descriptions/getSource.asciidoc: -------------------------------------------------------------------------------- 1 | Get the source of a document by its index, type and id. 2 | -------------------------------------------------------------------------------- /docs/_descriptions/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/index.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.analyze.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.analyze.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.clearCache.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.clearCache.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.close.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.close.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.create.asciidoc: -------------------------------------------------------------------------------- 1 | Create an index in Elasticsearch. -------------------------------------------------------------------------------- /docs/_descriptions/indices.delete.asciidoc: -------------------------------------------------------------------------------- 1 | Delete an index in Elasticsearch -------------------------------------------------------------------------------- /docs/_descriptions/indices.deleteAlias.asciidoc: -------------------------------------------------------------------------------- 1 | Delete a specific alias. -------------------------------------------------------------------------------- /docs/_descriptions/indices.deleteMapping.asciidoc: -------------------------------------------------------------------------------- 1 | Delete a mapping (type definition) along with its data. -------------------------------------------------------------------------------- /docs/_descriptions/indices.deleteTemplate.asciidoc: -------------------------------------------------------------------------------- 1 | Delete an index template by its name. -------------------------------------------------------------------------------- /docs/_descriptions/indices.deleteWarmer.asciidoc: -------------------------------------------------------------------------------- 1 | Delete an index warmer. -------------------------------------------------------------------------------- /docs/_descriptions/indices.exists.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.exists.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.existsAlias.asciidoc: -------------------------------------------------------------------------------- 1 | Return a boolean indicating whether given alias exists. -------------------------------------------------------------------------------- /docs/_descriptions/indices.existsType.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.existsType.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.flush.asciidoc: -------------------------------------------------------------------------------- 1 | Explicitly flush one or more indices. -------------------------------------------------------------------------------- /docs/_descriptions/indices.getAlias.asciidoc: -------------------------------------------------------------------------------- 1 | Retrieve a specified alias. -------------------------------------------------------------------------------- /docs/_descriptions/indices.getAliases.asciidoc: -------------------------------------------------------------------------------- 1 | Retrieve specified aliases -------------------------------------------------------------------------------- /docs/_descriptions/indices.getFieldMapping.asciidoc: -------------------------------------------------------------------------------- 1 | Retrieve mapping definition of a specific field. -------------------------------------------------------------------------------- /docs/_descriptions/indices.getMapping.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.getMapping.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.getSettings.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.getSettings.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.getTemplate.asciidoc: -------------------------------------------------------------------------------- 1 | Retrieve an index template by its name. -------------------------------------------------------------------------------- /docs/_descriptions/indices.getWarmer.asciidoc: -------------------------------------------------------------------------------- 1 | Retreieve an index warmer. -------------------------------------------------------------------------------- /docs/_descriptions/indices.open.asciidoc: -------------------------------------------------------------------------------- 1 | Open a closed index, making it available for search. -------------------------------------------------------------------------------- /docs/_descriptions/indices.optimize.asciidoc: -------------------------------------------------------------------------------- 1 | Explicitly optimize one or more indices. -------------------------------------------------------------------------------- /docs/_descriptions/indices.putAlias.asciidoc: -------------------------------------------------------------------------------- 1 | Create an alias for a specific index/indices. -------------------------------------------------------------------------------- /docs/_descriptions/indices.putMapping.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.putMapping.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.putSettings.asciidoc: -------------------------------------------------------------------------------- 1 | Change specific index level settings in real time. -------------------------------------------------------------------------------- /docs/_descriptions/indices.putTemplate.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.putTemplate.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.putWarmer.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.putWarmer.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.refresh.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.refresh.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.segments.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.segments.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.snapshotIndex.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.snapshotIndex.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.stats.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.stats.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.status.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.status.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/indices.updateAliases.asciidoc: -------------------------------------------------------------------------------- 1 | Update specified aliases. -------------------------------------------------------------------------------- /docs/_descriptions/indices.validateQuery.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/indices.validateQuery.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/info.asciidoc: -------------------------------------------------------------------------------- 1 | Get basic info from the current cluster. -------------------------------------------------------------------------------- /docs/_descriptions/mget.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/mget.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/mlt.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/mlt.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/msearch.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/msearch.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/percolate.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/percolate.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/scroll.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/scroll.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/search.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/search.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/search_0.90.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/search_0.90.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/search_1.x.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/search_1.x.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/search_2.x.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/search_2.x.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/suggest.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/suggest.asciidoc -------------------------------------------------------------------------------- /docs/_descriptions/update.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_descriptions/update.asciidoc -------------------------------------------------------------------------------- /docs/_examples/bulk.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/bulk.asciidoc -------------------------------------------------------------------------------- /docs/_examples/cluster.nodeHotThreads.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/cluster.nodeHotThreads.asciidoc -------------------------------------------------------------------------------- /docs/_examples/cluster.nodeInfo.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/cluster.nodeInfo.asciidoc -------------------------------------------------------------------------------- /docs/_examples/count.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/count.asciidoc -------------------------------------------------------------------------------- /docs/_examples/create.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/create.asciidoc -------------------------------------------------------------------------------- /docs/_examples/delete.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/delete.asciidoc -------------------------------------------------------------------------------- /docs/_examples/deleteByQuery.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/deleteByQuery.asciidoc -------------------------------------------------------------------------------- /docs/_examples/exists.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/exists.asciidoc -------------------------------------------------------------------------------- /docs/_examples/explain.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/explain.asciidoc -------------------------------------------------------------------------------- /docs/_examples/get.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/get.asciidoc -------------------------------------------------------------------------------- /docs/_examples/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/index.asciidoc -------------------------------------------------------------------------------- /docs/_examples/indices.updateAliases.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/indices.updateAliases.asciidoc -------------------------------------------------------------------------------- /docs/_examples/mget.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/mget.asciidoc -------------------------------------------------------------------------------- /docs/_examples/mlt.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/mlt.asciidoc -------------------------------------------------------------------------------- /docs/_examples/msearch.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/msearch.asciidoc -------------------------------------------------------------------------------- /docs/_examples/percolate.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/percolate.asciidoc -------------------------------------------------------------------------------- /docs/_examples/scroll.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/scroll.asciidoc -------------------------------------------------------------------------------- /docs/_examples/scroll_<5.0.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/scroll_<5.0.asciidoc -------------------------------------------------------------------------------- /docs/_examples/search.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/search.asciidoc -------------------------------------------------------------------------------- /docs/_examples/suggest.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/suggest.asciidoc -------------------------------------------------------------------------------- /docs/_examples/update.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/_examples/update.asciidoc -------------------------------------------------------------------------------- /docs/about.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/about.asciidoc -------------------------------------------------------------------------------- /docs/api_conventions.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_conventions.asciidoc -------------------------------------------------------------------------------- /docs/api_methods.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_5_6.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_5_6.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_6_8.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_6_8.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_7_0.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_7_0.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_7_1.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_7_1.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_7_2.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_7_2.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_7_3.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_7_3.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_7_4.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_7_4.asciidoc -------------------------------------------------------------------------------- /docs/api_methods_7_5.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_methods_7_5.asciidoc -------------------------------------------------------------------------------- /docs/api_param_types.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/api_param_types.asciidoc -------------------------------------------------------------------------------- /docs/browser_builds.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/browser_builds.asciidoc -------------------------------------------------------------------------------- /docs/changelog.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/changelog.asciidoc -------------------------------------------------------------------------------- /docs/configuration.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/configuration.asciidoc -------------------------------------------------------------------------------- /docs/development.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/development.asciidoc -------------------------------------------------------------------------------- /docs/errors.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/errors.asciidoc -------------------------------------------------------------------------------- /docs/extending_core_components.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/extending_core_components.asciidoc -------------------------------------------------------------------------------- /docs/extensions.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/extensions.asciidoc -------------------------------------------------------------------------------- /docs/host.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/host.asciidoc -------------------------------------------------------------------------------- /docs/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/index.asciidoc -------------------------------------------------------------------------------- /docs/logging.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/logging.asciidoc -------------------------------------------------------------------------------- /docs/page_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/page_header.html -------------------------------------------------------------------------------- /docs/quick_start.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/quick_start.asciidoc -------------------------------------------------------------------------------- /docs/ssl_authentication.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/ssl_authentication.asciidoc -------------------------------------------------------------------------------- /docs/transport.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/docs/transport.asciidoc -------------------------------------------------------------------------------- /grunt/browser_clients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/browser_clients.js -------------------------------------------------------------------------------- /grunt/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/clean.js -------------------------------------------------------------------------------- /grunt/config/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/compress.js -------------------------------------------------------------------------------- /grunt/config/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/concat.js -------------------------------------------------------------------------------- /grunt/config/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/copy.js -------------------------------------------------------------------------------- /grunt/config/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/run.js -------------------------------------------------------------------------------- /grunt/config/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/uglify.js -------------------------------------------------------------------------------- /grunt/config/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/config/webpack.js -------------------------------------------------------------------------------- /grunt/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/tasks.js -------------------------------------------------------------------------------- /grunt/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/grunt/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/package.json -------------------------------------------------------------------------------- /scripts/Version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/Version.js -------------------------------------------------------------------------------- /scripts/_spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/_spawn.js -------------------------------------------------------------------------------- /scripts/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/eslint.js -------------------------------------------------------------------------------- /scripts/generate/api_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/api_index.js -------------------------------------------------------------------------------- /scripts/generate/configuration_docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/configuration_docs.js -------------------------------------------------------------------------------- /scripts/generate/doc_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/doc_index.js -------------------------------------------------------------------------------- /scripts/generate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/index.js -------------------------------------------------------------------------------- /scripts/generate/js_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/js_api.js -------------------------------------------------------------------------------- /scripts/generate/overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/overrides.js -------------------------------------------------------------------------------- /scripts/generate/templates/api_file.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/api_file.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/api_index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/api_index.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/api_index_browser.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/api_index_browser.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/api_methods.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/api_methods.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/client_action.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/client_action.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/client_action_proxy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/client_action_proxy.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/configuration_docs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/configuration_docs.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/docs_index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/docs_index.tmpl -------------------------------------------------------------------------------- /scripts/generate/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/generate/templates/index.js -------------------------------------------------------------------------------- /scripts/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/mocha.js -------------------------------------------------------------------------------- /scripts/release/bower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/scripts/release/bower.js -------------------------------------------------------------------------------- /src/elasticsearch.angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/elasticsearch.angular.js -------------------------------------------------------------------------------- /src/elasticsearch.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/elasticsearch.jquery.js -------------------------------------------------------------------------------- /src/elasticsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/elasticsearch.js -------------------------------------------------------------------------------- /src/lib/apis/5_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/5_6.js -------------------------------------------------------------------------------- /src/lib/apis/6_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/6_8.js -------------------------------------------------------------------------------- /src/lib/apis/7_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_0.js -------------------------------------------------------------------------------- /src/lib/apis/7_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_1.js -------------------------------------------------------------------------------- /src/lib/apis/7_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_2.js -------------------------------------------------------------------------------- /src/lib/apis/7_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_3.js -------------------------------------------------------------------------------- /src/lib/apis/7_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_4.js -------------------------------------------------------------------------------- /src/lib/apis/7_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_5.js -------------------------------------------------------------------------------- /src/lib/apis/7_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_6.js -------------------------------------------------------------------------------- /src/lib/apis/7_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_7.js -------------------------------------------------------------------------------- /src/lib/apis/7_x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/7_x.js -------------------------------------------------------------------------------- /src/lib/apis/browser_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/browser_index.js -------------------------------------------------------------------------------- /src/lib/apis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/index.js -------------------------------------------------------------------------------- /src/lib/apis/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/apis/master.js -------------------------------------------------------------------------------- /src/lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/client.js -------------------------------------------------------------------------------- /src/lib/client_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/client_action.js -------------------------------------------------------------------------------- /src/lib/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connection.js -------------------------------------------------------------------------------- /src/lib/connection_pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connection_pool.js -------------------------------------------------------------------------------- /src/lib/connectors/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connectors/angular.js -------------------------------------------------------------------------------- /src/lib/connectors/browser_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connectors/browser_index.js -------------------------------------------------------------------------------- /src/lib/connectors/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connectors/http.js -------------------------------------------------------------------------------- /src/lib/connectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connectors/index.js -------------------------------------------------------------------------------- /src/lib/connectors/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connectors/jquery.js -------------------------------------------------------------------------------- /src/lib/connectors/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/connectors/xhr.js -------------------------------------------------------------------------------- /src/lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/errors.js -------------------------------------------------------------------------------- /src/lib/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/host.js -------------------------------------------------------------------------------- /src/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/log.js -------------------------------------------------------------------------------- /src/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/logger.js -------------------------------------------------------------------------------- /src/lib/loggers/browser_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/browser_index.js -------------------------------------------------------------------------------- /src/lib/loggers/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/console.js -------------------------------------------------------------------------------- /src/lib/loggers/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/file.js -------------------------------------------------------------------------------- /src/lib/loggers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/index.js -------------------------------------------------------------------------------- /src/lib/loggers/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/stdio.js -------------------------------------------------------------------------------- /src/lib/loggers/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/stream.js -------------------------------------------------------------------------------- /src/lib/loggers/tracer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/loggers/tracer.js -------------------------------------------------------------------------------- /src/lib/nodes_to_host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/nodes_to_host.js -------------------------------------------------------------------------------- /src/lib/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/selectors/index.js -------------------------------------------------------------------------------- /src/lib/selectors/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/selectors/random.js -------------------------------------------------------------------------------- /src/lib/selectors/round_robin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/selectors/round_robin.js -------------------------------------------------------------------------------- /src/lib/serializers/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/serializers/angular.js -------------------------------------------------------------------------------- /src/lib/serializers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/serializers/index.js -------------------------------------------------------------------------------- /src/lib/serializers/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/serializers/json.js -------------------------------------------------------------------------------- /src/lib/transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/transport.js -------------------------------------------------------------------------------- /src/lib/transport/find_common_protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/transport/find_common_protocol.js -------------------------------------------------------------------------------- /src/lib/transport/sniff_on_connection_fault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/transport/sniff_on_connection_fault.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/fixtures/keepalive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/fixtures/keepalive.js -------------------------------------------------------------------------------- /test/fixtures/keepalive_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/fixtures/keepalive_server.js -------------------------------------------------------------------------------- /test/fixtures/large_response.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/short_node_list.0.90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/fixtures/short_node_list.0.90.json -------------------------------------------------------------------------------- /test/fixtures/short_node_list.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/fixtures/short_node_list.1.0.json -------------------------------------------------------------------------------- /test/fixtures/short_node_list.2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/fixtures/short_node_list.2.0.json -------------------------------------------------------------------------------- /test/fixtures/short_node_list.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/fixtures/short_node_list.5.0.json -------------------------------------------------------------------------------- /test/mocks/browser_http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/mocks/browser_http.js -------------------------------------------------------------------------------- /test/mocks/browser_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/mocks/browser_server.js -------------------------------------------------------------------------------- /test/mocks/incomming_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/mocks/incomming_message.js -------------------------------------------------------------------------------- /test/mocks/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/mocks/request.js -------------------------------------------------------------------------------- /test/mocks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/mocks/server.js -------------------------------------------------------------------------------- /test/mocks/writable_stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/mocks/writable_stream.js -------------------------------------------------------------------------------- /test/unit/browser_builds/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/browser_builds/angular.js -------------------------------------------------------------------------------- /test/unit/browser_builds/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/browser_builds/generic.js -------------------------------------------------------------------------------- /test/unit/browser_builds/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/browser_builds/jquery.js -------------------------------------------------------------------------------- /test/unit/buffer_flush_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/buffer_flush_tests.js -------------------------------------------------------------------------------- /test/unit/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/coverage.js -------------------------------------------------------------------------------- /test/unit/generic_logger_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/generic_logger_tests.js -------------------------------------------------------------------------------- /test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/index.js -------------------------------------------------------------------------------- /test/unit/specs/abstract_logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/abstract_logger.js -------------------------------------------------------------------------------- /test/unit/specs/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/client.js -------------------------------------------------------------------------------- /test/unit/specs/client_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/client_action.js -------------------------------------------------------------------------------- /test/unit/specs/connection_abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/connection_abstract.js -------------------------------------------------------------------------------- /test/unit/specs/connection_pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/connection_pool.js -------------------------------------------------------------------------------- /test/unit/specs/console_logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/console_logger.js -------------------------------------------------------------------------------- /test/unit/specs/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/errors.js -------------------------------------------------------------------------------- /test/unit/specs/file_logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/file_logger.js -------------------------------------------------------------------------------- /test/unit/specs/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/host.js -------------------------------------------------------------------------------- /test/unit/specs/http_connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/http_connector.js -------------------------------------------------------------------------------- /test/unit/specs/json_serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/json_serializer.js -------------------------------------------------------------------------------- /test/unit/specs/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/log.js -------------------------------------------------------------------------------- /test/unit/specs/nodes_to_host_callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/nodes_to_host_callback.js -------------------------------------------------------------------------------- /test/unit/specs/random_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/random_selector.js -------------------------------------------------------------------------------- /test/unit/specs/round_robin_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/round_robin_selector.js -------------------------------------------------------------------------------- /test/unit/specs/stdio_logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/stdio_logger.js -------------------------------------------------------------------------------- /test/unit/specs/stream_logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/stream_logger.js -------------------------------------------------------------------------------- /test/unit/specs/tracer_logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/tracer_logger.js -------------------------------------------------------------------------------- /test/unit/specs/transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/transport.js -------------------------------------------------------------------------------- /test/unit/specs/transport_with_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/transport_with_server.js -------------------------------------------------------------------------------- /test/unit/specs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/unit/specs/utils.js -------------------------------------------------------------------------------- /test/utils/auto_release_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/utils/auto_release_stub.js -------------------------------------------------------------------------------- /test/utils/expect_sub_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/test/utils/expect_sub_object.js -------------------------------------------------------------------------------- /webpack_config/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/webpack_config/angular.js -------------------------------------------------------------------------------- /webpack_config/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/webpack_config/browser.js -------------------------------------------------------------------------------- /webpack_config/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/webpack_config/jquery.js -------------------------------------------------------------------------------- /webpack_config/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/elasticsearch-js-legacy/HEAD/webpack_config/lib.js --------------------------------------------------------------------------------