// 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.index({ index: "postal_codes", id: 1, refresh: "wait_for", document: { location: { type: "envelope", coordinates: [ [13, 53], [14, 52], ], }, postal_code: "96598", }, }); console.log(response); ----