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

akkeris

Package Overview
Dependencies
Maintainers
4
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

akkeris - npm Package Compare versions

Comparing version 2.9.17 to 2.9.18

2

package.json
{
"name": "akkeris",
"version": "2.9.17",
"version": "2.9.18",
"description": "Akkeris CLI",

@@ -5,0 +5,0 @@ "main": "aka.js",

@@ -171,3 +171,11 @@ "use strict"

const app = await appkit.api.get('/apps/' + args.app);
const pipeline = await appkit.api.get('/apps/' + args.app + '/pipeline-couplings');
let pipeline;
try {
pipeline = await appkit.api.get('/apps/' + args.app + '/pipeline-couplings');
} catch (err) {
if (err.code !== 404) {
throw err
}
}

@@ -174,0 +182,0 @@ const ui = require('cliui')();

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