New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

volenday

Package Overview
Dependencies
Maintainers
1
Versions
252
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

volenday - npm Package Compare versions

Comparing version 0.0.32 to 0.0.33

2

package.json
{
"name": "volenday",
"version": "0.0.32",
"version": "0.0.33",
"private": false,

@@ -5,0 +5,0 @@ "license": "UNLICENSED",

@@ -18,2 +18,3 @@ const createError = require('http-errors');

if (token) {
console.log(`${apiUrl}api/checkToken`);
let checkToken = await fetch(`${apiUrl}api/checkToken`, { headers: { Authorization: token } });

@@ -32,2 +33,3 @@ if (checkToken.ok) {

console.log(`${apiUrl}api/validateApplication/${req.params.id}`);
let applicationCheck = await fetch(`${apiUrl}api/validateApplication/${req.params.id}`)

@@ -34,0 +36,0 @@ if (!applicationCheck.ok) return next(createError(404, await applicationCheck.text()));

@@ -18,2 +18,16 @@ const createError = require('http-errors');

let token = req.session.token;
console.log(`${apiUrl}api/applications?${param({
filter: {
Configurations: {
$elemMatch: {
Key: params.HostNameKey,
Value: {
$elemMatch: {
HostName: currentHostName
}
}
}
}
}
})}`);
let applicationCheck = await fetch(`${apiUrl}api/applications?${param({

@@ -40,2 +54,3 @@ filter: {

if (token) {
console.log(`${apiUrl}api/checkToken`);
let checkToken = await fetch(`${apiUrl}api/checkToken`, { headers: { Authorization: token } });

@@ -42,0 +57,0 @@ if (checkToken.ok) {

@@ -18,2 +18,3 @@ const { keyBy } = require('lodash');

if (!token) return res.redirect(portalUrl);
console.log(`${apiUrl}api/checkToken`);
let checkToken = await fetch(`${apiUrl}api/checkToken`, { headers: { Authorization: token } });

@@ -20,0 +21,0 @@ if (!checkToken.ok) return res.redirect(portalUrl);

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