Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e7c40dd459 | |||
| 86361daea5 | |||
| 09c2ff8bf3 | |||
| 75d85cae19 | |||
| e30079f64d | |||
| 610bf851d2 | |||
| b91ff8a6cc | |||
| b39f29b2b0 | |||
| ef69bbd216 | |||
| 6194119e62 | |||
| a4bff1c2f0 | |||
| 8e86450aeb | |||
| 90be646658 | |||
| af8bef4892 | |||
| 2504563480 | |||
| 1e55d2a099 | |||
| 23fbc15e1a | |||
| 5b12e8a123 | |||
| c65119bd53 | |||
| 708f9abe3e | |||
| a55856c60b | |||
| 126c277496 | |||
| 23341d5f2a | |||
| c3993f9145 | |||
| c7dd19bfcf | |||
| a018d49442 | |||
| f2a0abf76a | |||
| 85731864bf | |||
| f6abf6e093 | |||
| d7fc4f7b03 | |||
| a9c054ff21 | |||
| 1810f5f0c3 | |||
| edfa527d2d | |||
| 05921b134d | |||
| aadf44bbf2 | |||
| bef1604a8d | |||
| 87fb0a2996 | |||
| 456fc19c94 | |||
| 4c118b9f9a | |||
| dc5c041b07 | |||
| 6774560444 |
224
.ci/Jenkinsfile
vendored
Normal file
224
.ci/Jenkinsfile
vendored
Normal file
@ -0,0 +1,224 @@
|
|||||||
|
#!/usr/bin/env groovy
|
||||||
|
|
||||||
|
@Library('apm@current') _
|
||||||
|
|
||||||
|
def NODE_JS_VERSIONS = [8,10,12]
|
||||||
|
def nodeJsVersion = NODE_JS_VERSIONS[randomNumber(min: 0, max:2)]
|
||||||
|
|
||||||
|
pipeline {
|
||||||
|
agent {
|
||||||
|
label 'docker && immutable'
|
||||||
|
}
|
||||||
|
|
||||||
|
environment {
|
||||||
|
REPO = 'elasticsearch-js'
|
||||||
|
BASE_DIR = "src/github.com/elastic/${env.REPO}"
|
||||||
|
NODE_JS_DEFAULT_VERSION = "${nodeJsVersion}"
|
||||||
|
NODE_JS_VERSIONS = "${NODE_JS_VERSIONS.join(',')}"
|
||||||
|
HOME = "${env.WORKSPACE}"
|
||||||
|
npm_config_cache = 'npm-cache'
|
||||||
|
}
|
||||||
|
|
||||||
|
options {
|
||||||
|
timeout(time: 1, unit: 'HOURS')
|
||||||
|
buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20', daysToKeepStr: '30'))
|
||||||
|
timestamps()
|
||||||
|
ansiColor('xterm')
|
||||||
|
disableResume()
|
||||||
|
durabilityHint('PERFORMANCE_OPTIMIZED')
|
||||||
|
}
|
||||||
|
|
||||||
|
triggers {
|
||||||
|
issueCommentTrigger('(?i).*(?:jenkins\\W+)?run\\W+(?:the\\W+)?tests(?:\\W+please)?.*')
|
||||||
|
// env.CHANGE_ID as a value in case of a commit or a pr, which means
|
||||||
|
// that we will have a daily cron job only for branches that don't have an active pr
|
||||||
|
cron(env.CHANGE_ID ? '' : '@daily')
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Checkout') {
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
steps {
|
||||||
|
deleteDir()
|
||||||
|
gitCheckout(basedir: "${BASE_DIR}", githubNotifyFirstTimeContributor: false)
|
||||||
|
stash allowEmpty: true, name: 'source', useDefaultExcludes: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Install dependencies') {
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
steps {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'source'
|
||||||
|
script {
|
||||||
|
buildDockerImage(image: "node:${env.NODE_JS_DEFAULT_VERSION}-alpine").inside(){
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
sh(label: 'System info', script: 'node --version; npm --version')
|
||||||
|
sh(label: 'Install dependencies', script: 'npm install')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stash allowEmpty: true, name: 'source-dependencies', useDefaultExcludes: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('License check') {
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
steps {
|
||||||
|
withGithubNotify(context: 'License check') {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'source-dependencies'
|
||||||
|
script {
|
||||||
|
buildDockerImage(image: "node:${env.NODE_JS_DEFAULT_VERSION}-alpine").inside(){
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
sh(label: 'Check production dependencies licenses', script: 'npm run license-checker')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Linter') {
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
steps {
|
||||||
|
withGithubNotify(context: 'Linter') {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'source-dependencies'
|
||||||
|
script {
|
||||||
|
buildDockerImage(image: "node:${env.NODE_JS_DEFAULT_VERSION}-alpine").inside(){
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
sh(label: 'Lint code with standardjs', script: 'npm run lint')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Unit test') {
|
||||||
|
failFast true
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
steps {
|
||||||
|
withGithubNotify(context: 'Unit test') {
|
||||||
|
script {
|
||||||
|
def versions = env.NODE_JS_VERSIONS.split(',')
|
||||||
|
def parallelTasks = [:]
|
||||||
|
versions.each{ version ->
|
||||||
|
parallelTasks["Node.js v${version}"] = buildUnitTest(version: version)
|
||||||
|
}
|
||||||
|
parallel(parallelTasks)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Integration test') {
|
||||||
|
failFast true
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
parallel {
|
||||||
|
stage('OSS') {
|
||||||
|
agent { label 'docker && immutable' }
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
environment {
|
||||||
|
TEST_ES_SERVER = 'http://elasticsearch:9200'
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
withGithubNotify(context: 'Integration test OSS') {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'source-dependencies'
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
// Sometimes the docker registry fails and has random timeouts
|
||||||
|
// this block will retry a doker image 3 times before to fail.
|
||||||
|
retry(3) {
|
||||||
|
sleep randomNumber(min: 5, max: 10)
|
||||||
|
sh(label: 'Start Elasticsearch', script: './scripts/es-docker.sh --detach')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
script {
|
||||||
|
buildDockerImage(fromDockerfile: true).inside('--network=elastic'){
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
sh(label: 'Integration test', script: 'npm run test:integration | tee test-integration.tap')
|
||||||
|
sh(label: 'Generating test reporting', script: './node_modules/.bin/tap-mocha-reporter xunit < test-integration.tap > junit-integration.xml')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh(label: 'Stop Elasticsearch', script: 'docker kill $(docker ps -q)')
|
||||||
|
junit(allowEmptyResults: true, keepLongStdio: true, testResults: "${BASE_DIR}/**/junit-*.xml")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('xPack') {
|
||||||
|
agent { label 'docker && immutable' }
|
||||||
|
options { skipDefaultCheckout() }
|
||||||
|
environment {
|
||||||
|
TEST_ES_SERVER = 'https://elastic:changeme@elasticsearch:9200'
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
withGithubNotify(context: 'Integration test xPack') {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'source-dependencies'
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
// Sometimes the docker registry fails and has random timeouts
|
||||||
|
// this block will retry a doker image 3 times before to fail.
|
||||||
|
retry(3) {
|
||||||
|
sleep randomNumber(min: 5, max: 10)
|
||||||
|
sh(label: 'Start Elasticsearch', script: './scripts/es-docker-platinum.sh --detach')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
script {
|
||||||
|
buildDockerImage(fromDockerfile: true).inside('--network=elastic'){
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
sh(label: 'Integration test', script: 'npm run test:integration | tee test-integration.tap')
|
||||||
|
sh(label: 'Generating test reporting', script: './node_modules/.bin/tap-mocha-reporter xunit < test-integration.tap > junit-integration.xml')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh(label: 'Stop Elasticsearch', script: 'docker kill $(docker ps -q)')
|
||||||
|
junit(allowEmptyResults: true, keepLongStdio: true, testResults: "${BASE_DIR}/**/junit-*.xml")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sometimes the docker registry fails and has random timeouts
|
||||||
|
// this function will retry a doker image 3 times before to fail.
|
||||||
|
def buildDockerImage(args) {
|
||||||
|
def image
|
||||||
|
retry(3) {
|
||||||
|
sleep randomNumber(min: 5, max: 10)
|
||||||
|
if (args.fromDockerfile == true) {
|
||||||
|
image = docker.build('nodejs-image', "--build-arg NODE_JS_VERSION=${env.NODE_JS_DEFAULT_VERSION} ${BASE_DIR}/.ci/docker")
|
||||||
|
} else {
|
||||||
|
image = docker.image(args.image)
|
||||||
|
// make sure we have the latest available from Docker Hub
|
||||||
|
image.pull()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return image
|
||||||
|
}
|
||||||
|
|
||||||
|
def buildUnitTest(args) {
|
||||||
|
return {
|
||||||
|
node('docker && immutable') {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'source'
|
||||||
|
script {
|
||||||
|
buildDockerImage(image: "node:${args.version}-alpine").inside(){
|
||||||
|
dir("${BASE_DIR}"){
|
||||||
|
sh(label: 'Install dependencies', script: 'npm install')
|
||||||
|
sh(label: 'Run unit test', script: 'npm run test:unit | tee test-unit.tap')
|
||||||
|
sh(label: 'Run behavior test', script: 'npm run test:behavior | tee test-behavior.tap')
|
||||||
|
sh(label: 'Run types test', script: 'npm run test:types')
|
||||||
|
sh(label: 'Generating test reporting', script: './node_modules/.bin/tap-mocha-reporter xunit < test-unit.tap > junit-unit.xml; ./node_modules/.bin/tap-mocha-reporter xunit < test-behavior.tap > junit-behavior.xml')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
junit(allowEmptyResults: true, keepLongStdio: true, testResults: "${BASE_DIR}/**/junit-*.xml")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
7
.ci/docker/Dockerfile
Normal file
7
.ci/docker/Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
ARG NODE_JS_VERSION=10
|
||||||
|
FROM node:${NODE_JS_VERSION}-alpine
|
||||||
|
|
||||||
|
RUN apk --no-cache add git
|
||||||
|
|
||||||
|
# Create app directory
|
||||||
|
WORKDIR /usr/src/app
|
||||||
@ -1,67 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
##### GLOBAL METADATA
|
|
||||||
|
|
||||||
- meta:
|
|
||||||
cluster: clients-ci
|
|
||||||
|
|
||||||
##### JOB DEFAULTS
|
|
||||||
|
|
||||||
- job:
|
|
||||||
project-type: matrix
|
|
||||||
logrotate:
|
|
||||||
daysToKeep: 30
|
|
||||||
numToKeep: 100
|
|
||||||
properties:
|
|
||||||
- github:
|
|
||||||
url: https://github.com/elastic/elasticsearch-js/
|
|
||||||
- inject:
|
|
||||||
properties-content: HOME=$JENKINS_HOME
|
|
||||||
concurrent: true
|
|
||||||
node: flyweight
|
|
||||||
scm:
|
|
||||||
- git:
|
|
||||||
name: origin
|
|
||||||
credentials-id: f6c7695a-671e-4f4f-a331-acdce44ff9ba
|
|
||||||
reference-repo: /var/lib/jenkins/.git-references/elasticsearch-js.git
|
|
||||||
branches:
|
|
||||||
- ${branch_specifier}
|
|
||||||
url: https://github.com/elastic/elasticsearch-js.git
|
|
||||||
wipe-workspace: 'True'
|
|
||||||
triggers:
|
|
||||||
- github
|
|
||||||
vault:
|
|
||||||
# vault read auth/approle/role/clients-ci/role-id
|
|
||||||
role_id: ddbd0d44-0e51-105b-177a-c8fdfd445126
|
|
||||||
axes:
|
|
||||||
- axis:
|
|
||||||
type: slave
|
|
||||||
name: label
|
|
||||||
values:
|
|
||||||
- linux
|
|
||||||
- axis:
|
|
||||||
type: yaml
|
|
||||||
filename: .ci/test-matrix.yml
|
|
||||||
name: ELASTICSEARCH_VERSION
|
|
||||||
- axis:
|
|
||||||
type: yaml
|
|
||||||
filename: .ci/test-matrix.yml
|
|
||||||
name: NODE_JS_VERSION
|
|
||||||
yaml-strategy:
|
|
||||||
exclude-key: exclude
|
|
||||||
filename: .ci/test-matrix.yml
|
|
||||||
wrappers:
|
|
||||||
- ansicolor
|
|
||||||
- timeout:
|
|
||||||
type: absolute
|
|
||||||
timeout: 120
|
|
||||||
fail: true
|
|
||||||
- timestamps
|
|
||||||
- workspace-cleanup
|
|
||||||
builders:
|
|
||||||
- shell: |-
|
|
||||||
#!/usr/local/bin/runbld
|
|
||||||
.ci/run-tests
|
|
||||||
publishers:
|
|
||||||
- email:
|
|
||||||
recipients: infra-root+build@elastic.co
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- job:
|
|
||||||
name: elastic+elasticsearch-js+5.x
|
|
||||||
display-name: 'elastic / elasticsearch-js # 5.x'
|
|
||||||
description: Testing the elasticsearch-js 5.x branch.
|
|
||||||
parameters:
|
|
||||||
- string:
|
|
||||||
name: branch_specifier
|
|
||||||
default: refs/heads/5.x
|
|
||||||
description: the Git branch specifier to build (<branchName>, <tagName>,
|
|
||||||
<commitId>, etc.)
|
|
||||||
triggers:
|
|
||||||
- github
|
|
||||||
- timed: '@weekly'
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- job:
|
|
||||||
name: elastic+elasticsearch-js+6.x
|
|
||||||
display-name: 'elastic / elasticsearch-js # 6.x'
|
|
||||||
description: Testing the elasticsearch-js 6.x branch.
|
|
||||||
parameters:
|
|
||||||
- string:
|
|
||||||
name: branch_specifier
|
|
||||||
default: refs/heads/6.x
|
|
||||||
description: the Git branch specifier to build (<branchName>, <tagName>,
|
|
||||||
<commitId>, etc.)
|
|
||||||
triggers:
|
|
||||||
- github
|
|
||||||
- timed: '@weekly'
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- job:
|
|
||||||
name: elastic+elasticsearch-js+7.x
|
|
||||||
display-name: 'elastic / elasticsearch-js # 7.x'
|
|
||||||
description: Testing the elasticsearch-js 7.x branch.
|
|
||||||
parameters:
|
|
||||||
- string:
|
|
||||||
name: branch_specifier
|
|
||||||
default: refs/heads/7.x
|
|
||||||
description: the Git branch specifier to build (<branchName>, <tagName>,
|
|
||||||
<commitId>, etc.)
|
|
||||||
triggers:
|
|
||||||
- github
|
|
||||||
- timed: '@weekly'
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- job:
|
|
||||||
name: elastic+elasticsearch-js+master
|
|
||||||
display-name: 'elastic / elasticsearch-js # master'
|
|
||||||
description: Testing the elasticsearch-js master branch.
|
|
||||||
parameters:
|
|
||||||
- string:
|
|
||||||
name: branch_specifier
|
|
||||||
default: refs/heads/master
|
|
||||||
description: the Git branch specifier to build (<branchName>, <tagName>,
|
|
||||||
<commitId>, etc.)
|
|
||||||
triggers:
|
|
||||||
- github
|
|
||||||
- timed: '@daily'
|
|
||||||
55
.ci/jobs/elastic+elasticsearch-js+mbp.yml
Normal file
55
.ci/jobs/elastic+elasticsearch-js+mbp.yml
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
---
|
||||||
|
- job:
|
||||||
|
name: elastic+elasticsearch-js+mbp
|
||||||
|
display-name: 'elastic / elasticsearch-js'
|
||||||
|
description: Testing elasticsearch-js.
|
||||||
|
project-type: multibranch
|
||||||
|
properties: []
|
||||||
|
triggers: []
|
||||||
|
logrotate:
|
||||||
|
daysToKeep: 30
|
||||||
|
number-to-keep: '5'
|
||||||
|
days-to-keep: '1'
|
||||||
|
concurrent: true
|
||||||
|
node: linux
|
||||||
|
script-path: .ci/Jenkinsfile
|
||||||
|
scm:
|
||||||
|
- github:
|
||||||
|
branch-discovery: no-pr
|
||||||
|
discover-pr-forks-strategy: merge-current
|
||||||
|
discover-pr-forks-trust: permission
|
||||||
|
discover-pr-origin: merge-current
|
||||||
|
discover-tags: false
|
||||||
|
repo: elasticsearch-js
|
||||||
|
repo-owner: elastic
|
||||||
|
credentials-id: 2a9602aa-ab9f-4e52-baf3-b71ca88469c7-UserAndToken
|
||||||
|
ssh-checkout:
|
||||||
|
credentials: f6c7695a-671e-4f4f-a331-acdce44ff9ba
|
||||||
|
build-strategies:
|
||||||
|
- tags:
|
||||||
|
ignore-tags-older-than: -1
|
||||||
|
ignore-tags-newer-than: -1
|
||||||
|
- regular-branches: true
|
||||||
|
- change-request:
|
||||||
|
ignore-target-only-changes: false
|
||||||
|
clean:
|
||||||
|
after: true
|
||||||
|
before: true
|
||||||
|
prune: true
|
||||||
|
shallow-clone: true
|
||||||
|
depth: 3
|
||||||
|
do-not-fetch-tags: true
|
||||||
|
submodule:
|
||||||
|
disable: false
|
||||||
|
recursive: true
|
||||||
|
parent-credentials: true
|
||||||
|
timeout: 100
|
||||||
|
timeout: '15'
|
||||||
|
use-author: true
|
||||||
|
wipe-workspace: 'True'
|
||||||
|
periodic-folder-trigger: 1d
|
||||||
|
prune-dead-branches: true
|
||||||
|
publishers:
|
||||||
|
- email:
|
||||||
|
recipients: infra-root+build@elastic.co
|
||||||
|
|
||||||
@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
- job:
|
|
||||||
name: elastic+elasticsearch-js+pull-request
|
|
||||||
display-name: 'elastic / elasticsearch-js # pull-request'
|
|
||||||
description: Testing of elasticsearch-js pull requests.
|
|
||||||
scm:
|
|
||||||
- git:
|
|
||||||
branches:
|
|
||||||
- ${ghprbActualCommit}
|
|
||||||
refspec: +refs/pull/*:refs/remotes/origin/pr/*
|
|
||||||
triggers:
|
|
||||||
- github-pull-request:
|
|
||||||
org-list:
|
|
||||||
- elastic
|
|
||||||
allow-whitelist-orgs-as-admins: true
|
|
||||||
github-hooks: true
|
|
||||||
status-context: clients-ci
|
|
||||||
cancel-builds-on-update: true
|
|
||||||
publishers: []
|
|
||||||
14
.ci/packer_cache.sh
Normal file
14
.ci/packer_cache.sh
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source /usr/local/bin/bash_standard_lib.sh
|
||||||
|
|
||||||
|
DOCKER_IMAGES="node:12-alpine
|
||||||
|
node:10-alpine
|
||||||
|
node:8-alpine
|
||||||
|
"
|
||||||
|
|
||||||
|
for di in ${DOCKER_IMAGES}
|
||||||
|
do
|
||||||
|
(retry 2 docker pull "${di}") || echo "Error pulling ${di} Docker image, we continue"
|
||||||
|
done
|
||||||
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
ELASTICSEARCH_VERSION:
|
ELASTICSEARCH_VERSION:
|
||||||
- 6.7.1
|
- 6.8.1
|
||||||
|
|
||||||
NODE_JS_VERSION:
|
NODE_JS_VERSION:
|
||||||
- 12
|
- 12
|
||||||
|
|||||||
6
.gitignore
vendored
6
.gitignore
vendored
@ -50,8 +50,6 @@ package-lock.json
|
|||||||
# elasticsearch repo or binary files
|
# elasticsearch repo or binary files
|
||||||
elasticsearch*
|
elasticsearch*
|
||||||
|
|
||||||
# Generated typings, we don't commit them
|
|
||||||
# because we should copy them in the main .d.ts file
|
|
||||||
api/generated.d.ts
|
|
||||||
|
|
||||||
test/benchmarks/macro/fixtures/*
|
test/benchmarks/macro/fixtures/*
|
||||||
|
|
||||||
|
*-junit.xml
|
||||||
|
|||||||
16
.travis.yml
16
.travis.yml
@ -1,7 +1,3 @@
|
|||||||
dist: trusty
|
|
||||||
|
|
||||||
sudo: required
|
|
||||||
|
|
||||||
language: node_js
|
language: node_js
|
||||||
|
|
||||||
node_js:
|
node_js:
|
||||||
@ -9,11 +5,21 @@ node_js:
|
|||||||
- "10"
|
- "10"
|
||||||
- "8"
|
- "8"
|
||||||
|
|
||||||
|
cache:
|
||||||
|
npm: false
|
||||||
|
|
||||||
|
os:
|
||||||
|
- windows
|
||||||
|
- linux
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- npm install
|
- npm install
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- npm run license-checker && npm run test
|
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then npm run license-checker; fi
|
||||||
|
- npm run lint
|
||||||
|
- npm run test:coverage
|
||||||
|
- npm run test:types
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
|
|||||||
256
README.md
256
README.md
@ -1,23 +1,24 @@
|
|||||||
<img align="right" width="auto" height="auto" src="https://www.elastic.co/static-res/images/elastic-logo-200.png">
|
<img align="right" width="auto" height="auto" src="https://www.elastic.co/static-res/images/elastic-logo-200.png">
|
||||||
|
|
||||||
# @elastic/elasticsearch
|
# Elasticsearch Node.js client
|
||||||
|
|
||||||
[](http://standardjs.com/) [](https://clients-ci.elastic.co/job/elastic+elasticsearch-js+master/) [](https://codecov.io/gh/elastic/elasticsearch-js) [](https://www.npmjs.com/package/@elastic/elasticsearch)
|
[](http://standardjs.com/) [](https://clients-ci.elastic.co/job/elastic+elasticsearch-js+master/) [](https://codecov.io/gh/elastic/elasticsearch-js) [](https://www.npmjs.com/package/@elastic/elasticsearch)
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Note:** In the past months we have worked on the new Elasticsearch Node.js client, and if you want you can already try it by following the instructions below, while if you're going to use the legacy one or report an issue, please check out [elastic/elasticsearch-js-legacy](https://github.com/elastic/elasticsearch-js-legacy).
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
The official Node.js client for Elasticsearch.
|
The official Node.js client for Elasticsearch.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Note:** In the past months we have worked on the new Elasticsearch Node.js client and you can use it by following the instructions below. If you're going to use the legacy one or report an issue, however, please check out [elastic/elasticsearch-js-legacy](https://github.com/elastic/elasticsearch-js-legacy).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
- One-to-one mapping with REST API.
|
- One-to-one mapping with REST API.
|
||||||
- Generalized, pluggable architecture.
|
- Generalized, pluggable architecture.
|
||||||
- Configurable, automatic discovery of cluster nodes.
|
- Configurable, automatic discovery of cluster nodes.
|
||||||
- Persistent, Keep-Alive connections.
|
- Persistent, Keep-Alive connections.
|
||||||
- Load balancing (with pluggable selection strategy) across all available nodes.
|
- Load balancing across all available nodes.
|
||||||
|
- Child client support.
|
||||||
- TypeScript support out of the box.
|
- TypeScript support out of the box.
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
@ -29,62 +30,49 @@ npm install @elastic/elasticsearch
|
|||||||
|
|
||||||
The minimum supported version of Node.js is `v8`.
|
The minimum supported version of Node.js is `v8`.
|
||||||
|
|
||||||
The library is compatible with all Elasticsearch versions since 5.x, but you should use the same major version of the Elasticsearch instance that you are using.
|
The library is compatible with all Elasticsearch versions since 5.x, and you should use the same major version of the Elasticsearch instance that you are using.
|
||||||
|
|
||||||
|
| Elasticsearch Version | Client Version |
|
||||||
|
| --------------------- |----------------|
|
||||||
|
| `master` | `master` |
|
||||||
|
| `7.x` | `7.x` |
|
||||||
|
| `6.x` | `6.x` |
|
||||||
|
| `5.x` | `5.x` |
|
||||||
|
|
||||||
|
To install a specific major of the client, run the following command:
|
||||||
```
|
```
|
||||||
# Elasticsearch 7.x
|
npm install @elastic/elasticsearch@<major>
|
||||||
@elastic/elasticsearch@7
|
|
||||||
|
|
||||||
# Elasticsearch 6.x
|
|
||||||
@elastic/elasticsearch@6
|
|
||||||
|
|
||||||
# Elasticsearch 5.x
|
|
||||||
@elastic/elasticsearch@5
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Install multiple versions
|
#### Browser
|
||||||
If you are using multiple versions of Elasticsearch, you need to use multiple versions of the client. In the past, install multiple versions of the same package was not possible, but with `npm v6.9`, you can do that via aliasing.
|
|
||||||
|
|
||||||
The command you must run to install different version of the client is:
|
WARNING: There is no official support for the browser environment. It exposes your Elasticsearch instance to everyone, which could lead to security issues.
|
||||||
```sh
|
We recommend that you write a lightweight proxy that uses this client instead.
|
||||||
npm install <alias>@npm:@elastic/elasticsearch@<version>
|
|
||||||
```
|
|
||||||
So for example if you need to install `7.x` and `6.x`, you will run
|
|
||||||
```sh
|
|
||||||
npm install es6@npm:@elastic/elasticsearch@6
|
|
||||||
npm install es7@npm:@elastic/elasticsearch@7
|
|
||||||
```
|
|
||||||
And your `package.json` will look like the following:
|
|
||||||
```json
|
|
||||||
"dependencies": {
|
|
||||||
"es6": "npm:@elastic/elasticsearch@^6.7.0",
|
|
||||||
"es7": "npm:@elastic/elasticsearch@^7.0.0"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
And finally, you will require the packages from your code by using the alias you have defined.
|
|
||||||
```js
|
|
||||||
const { Client: Client6 } = require('es6')
|
|
||||||
const { Client: Client7 } = require('es7')
|
|
||||||
|
|
||||||
const client6 = new Client6({ node: 'http://localhost:9200' })
|
## Documentation
|
||||||
const client7 = new Client7({ node: 'http://localhost:9201' })
|
|
||||||
|
|
||||||
client6.info(console.log)
|
- [Introduction](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/introduction.html)
|
||||||
client7.info(console.log)
|
- [Usage](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/client-usage.html)
|
||||||
```
|
- [Client configuration](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/client-configuration.html)
|
||||||
|
- [API reference](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/api-reference.html)
|
||||||
|
- [Breaking changes coming from the old client](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/breaking-changes.html)
|
||||||
|
- [Authentication](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/auth-reference.html)
|
||||||
|
- [Observability](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/observability.html)
|
||||||
|
- [Creating a child client](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/child-client.html)
|
||||||
|
- [Extend the client](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/extend-client.html)
|
||||||
|
- [Typescript support](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/typescript.html)
|
||||||
|
- [Examples](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/examples.html)
|
||||||
|
|
||||||
Finally, if you want to install the client for the next version of Elasticsearch *(the one that lives in Elasticsearch’s master branch)*, you can use the following command:
|
## Quick start
|
||||||
```sh
|
|
||||||
npm install esmaster@github:elastic/elasticsearch-js
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
You can find the full documentation in our [docs](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html) website.
|
|
||||||
|
|
||||||
|
First of all, require the client and initialize it:
|
||||||
```js
|
```js
|
||||||
const { Client } = require('@elastic/elasticsearch')
|
const { Client } = require('@elastic/elasticsearch')
|
||||||
const client = new Client({ node: 'http://localhost:9200' })
|
const client = new Client({ node: 'http://localhost:9200' })
|
||||||
|
```
|
||||||
|
|
||||||
|
You can use both the callback-style API and the promise-style API, both behave the same way.
|
||||||
|
```js
|
||||||
// promise API
|
// promise API
|
||||||
const result = await client.search({
|
const result = await client.search({
|
||||||
index: 'my-index',
|
index: 'my-index',
|
||||||
@ -109,84 +97,98 @@ The returned value of **every** API call is formed as follows:
|
|||||||
meta: object
|
meta: object
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
### Client options
|
|
||||||
|
|
||||||
The client is designed to be easily configured as you see fit for your needs, following you can see all the possible options that you can use to configure it.
|
Let's see a complete example!
|
||||||
|
|
||||||
```ts
|
|
||||||
{
|
|
||||||
// the Elasticsearch endpoint to use
|
|
||||||
node: string | string[];
|
|
||||||
// alias of above
|
|
||||||
nodes: string | string[];
|
|
||||||
// custom connection class
|
|
||||||
Connection: typeof Connection;
|
|
||||||
// custom connection pool class
|
|
||||||
ConnectionPool: typeof ConnectionPool;
|
|
||||||
// custom transport class
|
|
||||||
Transport: typeof Transport;
|
|
||||||
// custom serializer class
|
|
||||||
Serializer: typeof Serializer;
|
|
||||||
// max number of retries for each request
|
|
||||||
maxRetries: number;
|
|
||||||
// max request timeout for each request
|
|
||||||
requestTimeout: number;
|
|
||||||
// max ping timeout for each request
|
|
||||||
pingTimeout: number;
|
|
||||||
// perform a sniff operation every `n` milliseconds
|
|
||||||
sniffInterval: number;
|
|
||||||
// perform a sniff once the client is started
|
|
||||||
sniffOnStart: boolean;
|
|
||||||
// custom sniff endpoint, defaults `_nodes/_all/http`
|
|
||||||
sniffEndpoint: string;
|
|
||||||
// perform a sniff on connection fault
|
|
||||||
sniffOnConnectionFault: boolean;
|
|
||||||
// configurethe node resurrection strategy, default `ping`
|
|
||||||
resurrectStrategy: 'ping' | 'optimistic' | 'none';
|
|
||||||
// adds `accept-encoding` header to every request
|
|
||||||
suggestCompression: boolean;
|
|
||||||
// enable gzip request body compression
|
|
||||||
compression: 'gzip';
|
|
||||||
// ssl configuraton
|
|
||||||
ssl: http.SecureContextOptions;
|
|
||||||
// http agent options
|
|
||||||
agent: http.AgentOptions;
|
|
||||||
// filters which node not to use for a request
|
|
||||||
nodeFilter: nodeFilterFn;
|
|
||||||
// custom selection strategy, defaults `round-robin`
|
|
||||||
nodeSelector: nodeSelectorFn | string;
|
|
||||||
// function to generate the request id for every request
|
|
||||||
generateRequestId: generateRequestIdFn;
|
|
||||||
// name to identify the client instance in the events
|
|
||||||
name: string;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Request specific options
|
|
||||||
If needed you can pass request specific options in a second object:
|
|
||||||
```js
|
```js
|
||||||
// promise API
|
'use strict'
|
||||||
const result = await client.search({
|
|
||||||
index: 'my-index',
|
const { Client } = require('@elastic/elasticsearch')
|
||||||
body: { foo: 'bar' }
|
const client = new Client({ node: 'http://localhost:9200' })
|
||||||
}, {
|
|
||||||
ignore: [404],
|
async function run () {
|
||||||
maxRetries: 3
|
// Let's start by indexing some data
|
||||||
})
|
await client.index({
|
||||||
```
|
index: 'game-of-thrones',
|
||||||
The supported *request specific options* are:
|
// type: '_doc', // uncomment this line if you are using Elasticsearch ≤ 6
|
||||||
```ts
|
body: {
|
||||||
{
|
character: 'Ned Stark',
|
||||||
ignore: [number], // default `null`
|
quote: 'Winter is coming.'
|
||||||
requestTimeout: number, // client default
|
}
|
||||||
maxRetries: number, // default `5`
|
})
|
||||||
asStream: boolean, // default `false`
|
|
||||||
compression: string, // default `false`
|
await client.index({
|
||||||
headers: object, // default `null`
|
index: 'game-of-thrones',
|
||||||
querystring: object // default `null`,
|
// type: '_doc', // uncomment this line if you are using Elasticsearch ≤ 6
|
||||||
context: object // default `null`,
|
body: {
|
||||||
id: any // default incr. integer
|
character: 'Daenerys Targaryen',
|
||||||
|
quote: 'I am the blood of the dragon.'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
await client.index({
|
||||||
|
index: 'game-of-thrones',
|
||||||
|
// type: '_doc', // uncomment this line if you are using Elasticsearch ≤ 6
|
||||||
|
body: {
|
||||||
|
character: 'Tyrion Lannister',
|
||||||
|
quote: 'A mind needs books like a sword needs a whetstone.'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// here we are forcing an index refresh, otherwise we will not
|
||||||
|
// get any result in the consequent search
|
||||||
|
await client.indices.refresh({ index: 'game-of-thrones' })
|
||||||
|
|
||||||
|
// Let's search!
|
||||||
|
const { body } = await client.search({
|
||||||
|
index: 'game-of-thrones',
|
||||||
|
// type: '_doc', // uncomment this line if you are using Elasticsearch ≤ 6
|
||||||
|
body: {
|
||||||
|
query: {
|
||||||
|
match: { quote: 'winter' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(body.hits.hits)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
run().catch(console.log)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Install multiple versions
|
||||||
|
If you are using multiple versions of Elasticsearch, you need to use multiple versions of the client. In the past, install multiple versions of the same package was not possible, but with `npm v6.9`, you can do that via aliasing.
|
||||||
|
|
||||||
|
The command you must run to install different version of the client is:
|
||||||
|
```sh
|
||||||
|
npm install <alias>@npm:@elastic/elasticsearch@<version>
|
||||||
|
```
|
||||||
|
So for example if you need to install `7.x` and `6.x`, you will run
|
||||||
|
```sh
|
||||||
|
npm install es6@npm:@elastic/elasticsearch@6
|
||||||
|
npm install es7@npm:@elastic/elasticsearch@7
|
||||||
|
```
|
||||||
|
And your `package.json` will look like the following:
|
||||||
|
```json
|
||||||
|
"dependencies": {
|
||||||
|
"es6": "npm:@elastic/elasticsearch@^6.7.0",
|
||||||
|
"es7": "npm:@elastic/elasticsearch@^7.0.0"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
You will require the packages from your code by using the alias you have defined.
|
||||||
|
```js
|
||||||
|
const { Client: Client6 } = require('es6')
|
||||||
|
const { Client: Client7 } = require('es7')
|
||||||
|
|
||||||
|
const client6 = new Client6({ node: 'http://localhost:9200' })
|
||||||
|
const client7 = new Client7({ node: 'http://localhost:9201' })
|
||||||
|
|
||||||
|
client6.info(console.log)
|
||||||
|
client7.info(console.log)
|
||||||
|
```
|
||||||
|
|
||||||
|
Finally, if you want to install the client for the next version of Elasticsearch *(the one that lives in Elasticsearch’s master branch)*, you can use the following command:
|
||||||
|
```sh
|
||||||
|
npm install esmaster@github:elastic/elasticsearch-js
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
@ -58,8 +43,6 @@ function buildGet (opts) {
|
|||||||
'_source_exclude',
|
'_source_exclude',
|
||||||
'_source_includes',
|
'_source_includes',
|
||||||
'_source_include',
|
'_source_include',
|
||||||
'_source_exclude',
|
|
||||||
'_source_include',
|
|
||||||
'version',
|
'version',
|
||||||
'version_type',
|
'version_type',
|
||||||
'pretty',
|
'pretty',
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
@ -1,21 +1,6 @@
|
|||||||
/*
|
// Licensed to Elasticsearch B.V under one or more agreements.
|
||||||
* Licensed to Elasticsearch B.V. under one or more contributor
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
||||||
* license agreements. See the NOTICE file distributed with
|
// See the LICENSE file in the project root for more information
|
||||||
* this work for additional information regarding copyright
|
|
||||||
* ownership. Elasticsearch B.V. licenses this file to you under
|
|
||||||
* the Apache License, Version 2.0 (the "License"); you may
|
|
||||||
* not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing,
|
|
||||||
* software distributed under the License is distributed on an
|
|
||||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
||||||
* KIND, either express or implied. See the License for the
|
|
||||||
* specific language governing permissions and limitations
|
|
||||||
* under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict'
|
'use strict'
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user