Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

es-alchemy

Package Overview
Dependencies
Maintainers
1
Versions
318
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

es-alchemy - npm Package Compare versions

Comparing version 10.5.2 to 10.5.3

7

lib/util/rest/mapping/list.js
export default ({ call }) => call('GET', '_cat', { endpoint: 'indices' })
.then((r) => [...new Set(r.body.map((idx) => idx.index.split('@')[0]))]);
.then((r) => {
const indices = r.body
.filter(({ index }) => index !== '.opensearch-observability')
.map(({ index }) => index.split('@')[0]);
return [...new Set(indices)];
});

4

package.json
{
"name": "es-alchemy",
"type": "module",
"version": "10.5.2",
"version": "10.5.3",
"description": "Simplification of Opensearch interactions",

@@ -48,3 +48,3 @@ "main": "lib/index.js",

"@blackflux/eslint-plugin-rules": "2.1.0",
"@blackflux/robo-config-plugin": "7.9.20",
"@blackflux/robo-config-plugin": "7.9.21",
"c8": "7.12.0",

@@ -51,0 +51,0 @@ "chai": "4.3.7",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc