Update docs examples (#1081)

* Updated enabled files list

* Generated docs examples

* Generated docs examples
This commit is contained in:
Tomas Della Vedova
2020-02-06 12:04:29 +01:00
committed by GitHub
parent 41927914bb
commit 28205e97cf
46 changed files with 928 additions and 3 deletions

View File

@ -0,0 +1,18 @@
// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.indices.putMapping({
index: 'publications',
body: {
properties: {
title: {
type: 'text'
}
}
}
})
console.log(response)
----